from game_runner import play_game
from computer_player import make_move as computer_move
from human_player import make_move as human_move

play_game(computer_move, human_move)
from game_runner import play_game
from human_player import make_move

play_game(make_move, make_move)
from game_runner import play_game
from computer_player import make_move as computer_move
from human_player import make_move as human_move

play_game(human_move, computer_move)