1#!/usr/bin/env python3 2 3import sys 4from os import path 5 6print(path.relpath(sys.argv[1], sys.argv[2])) 7