10 lines
348 B
Python
10 lines
348 B
Python
print("You get one chance to awaken from the ice prison.")
|
|
code = input("input: ").strip()
|
|
whitelist = """gctf{"*+*(=>:/)*+*"}""" # not the flag
|
|
if any([x not in whitelist for x in code]) or len(code) > 40000:
|
|
|
|
print("Denied!")
|
|
exit(0)
|
|
|
|
eval(eval(code, {'globals': {}, '__builtins__': {}}, {}), {'globals': {}, '__builtins__': {}}, {})
|