easyctf-2017/fizz-buzz-2/source_verifier.py

9 lines
1.9 KiB
Python
Raw Normal View History

2017-03-15 16:32:08 +00:00
import sys
code = sys.stdin.read()
if ("i" in code) or ("I" in code) or ("?" in code):
print "Your program contains an 'i', 'I', or '?'. Please remove it and try again."
else:
print "OK"