5 lines
76 B
Text
5 lines
76 B
Text
for(n=1,10,
|
|
print1(n);
|
|
if(n%5 == 0, print();continue);
|
|
print1(", ")
|
|
)
|