easyctf-2017/fizz-buzz-2/source_grader.py
2017-03-08 15:24:44 -06:00

5 lines
173 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"