7 lines
109 B
Python
7 lines
109 B
Python
n, i = 10, 1
|
|
while True:
|
|
print(i, end="")
|
|
i += 1
|
|
if i > n:
|
|
break
|
|
print(", ", end="")
|