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