easyctf-2017/fizz-buzz-2/source_verifier.py
2017-03-15 11:30:44 -05:00

5 lines
174 B
Python

code = raw_input()
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"