import sys d = open(sys.argv[1], "rb").read() d2 = open(sys.argv[2], "rb").read() if d[:len(d2)] == d2: print("OK") else: print("NOT OK")