4 lines
No EOL
114 B
Python
4 lines
No EOL
114 B
Python
fin = open("program_output", "r")
|
|
|
|
output = fin.read().strip()
|
|
print "OK" if output == "Hello, world!" else "FAIL" |