print("4 * 100 - 54 = ?") while True: answer = int(input()) if answer == 346: print("Yes") break else: print("No")
Standard input is empty
4 * 100 - 54 = ?
Traceback (most recent call last): File "./prog.py", line 4, in <module> EOFError: EOF when reading a line