5 lines
No EOL
41 B
Python
5 lines
No EOL
41 B
Python
i = 1
|
|
|
|
while i <= 5:
|
|
print(i)
|
|
i = i + 1 |