EXEC EVAL Python

exec(str(input()))
"j = 5"
print(j)
5

eval(str(input()))
"i = 4"
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 1
    i = 4
      ^
Xanthous Xenomorph