1import sys2 3input = open(sys.argv[1], "r")4for line in input:5 if "!interesting" in line:6 sys.exit(0)7 8sys.exit(1)9