player1 = "aas"
player2 = "aww"
turn = 1

while True:
    if turn % 2 > 0:
        player1 = player2
        print(player1)
        turn = turn + 1
        print(turn)

    else:
        print(player1)
        turn = turn + 1