easyctf-2017/hello-world/grader.py
2016-10-31 16:13:47 -05:00

4 lines
114 B
Python

fin = open("program_output", "r")
output = fin.read().strip()
print "OK" if output == "Hello, world!" else "FAIL"