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