fork download
  1. print("4 * 100 - 54 = ?")
  2.  
  3. while True:
  4. answer = int(input())
  5.  
  6. if answer == 346:
  7. print("Yes")
  8. break
  9. else:
  10. print("No")
  11.  
Runtime error #stdin #stdout #stderr 0.02s 8696KB
stdin
Standard input is empty
stdout
4 * 100 - 54 = ?
stderr
Traceback (most recent call last):
  File "./prog.py", line 4, in <module>
EOFError: EOF when reading a line