5 lines
60 B
Python
5 lines
60 B
Python
|
|
from itertools import count
|
||
|
|
|
||
|
|
for i in count():
|
||
|
|
print(i)
|