def get_move(board, col):
    '''Return a tuple which contains the coordinates of the move the AI wants
    to make for colour col on board board'''
    
    #CHANGE ME
    for i in range(board):
        for j in range(board[i]):
            if board[i][j] == " ":
                return (i, j)