#!/usr/bin/env python3

from sys import argv
from shutil import copy

copy(argv[1], argv[2])
