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

5 lines
173 B
Python
Raw Normal View History

2017-03-08 21:24:44 +00:00
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"