fork download
  1. a = int(input())
  2. while a // 10 != 0:
  3. print(a % 10)
  4. a //= 10
  5. print(a % 10)
Runtime error #stdin #stdout #stderr 0.06s 28376KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 1, in <module>
    a = int(input())
EOFError: EOF when reading a line