1 2 3 4 | n = int(input()) while n != 42: print(n) n = int(input()) |
biA9IGludChpbnB1dCgpKQp3aGlsZSBuICE9IDQyOgogICAgcHJpbnQobikKICAgIG4gPSBpbnQoaW5wdXQoKSk=
-
upload with new input
-
result: Success time: 0.02s memory: 5864 kB returned value: 0
1 2 10 15 18 25 42 11
1 2 10 15 18 25
-
result: Runtime error time: 0.02s memory: 5864 kB signal: -1
5 2
5 2
Traceback (most recent call last): File "prog.py", line 4, in <module> n = int(input()) EOFError: EOF when reading a line -
result: Success time: 0.02s memory: 5864 kB returned value: 0
1 2 10 42 11
1 2 10



