The input:
359716482
867345912
413928675
398574126
546281739
172639548
984163257
621857394
735492861
If I directly paste the input into the IPython console it will look like this:
359716482
...: 867345912
...: 413928675
...: 398574126
...: 546281739
...: 172639548
...: 984163257
...: 621857394
...: 735492861
and a single input()
will read everything into a single string, which then needs to be broken up manually.
I'd like to make the input behave as if I entered every line separately and pressed Enter
after entering every line, so a input()
only reads a single number.