Posts by Paulo Fagundes • 11 points
1 post
-
1
votes7
answers52205
viewsA: Is there a way to print everything without breaking the line?
n = int(raw_input()) i=1 while(i<=n): print(i ,end="" ) i+=1
pythonanswered Paulo Fagundes 11
1 post
1
votes7
answers52205
viewsn = int(raw_input()) i=1 while(i<=n): print(i ,end="" ) i+=1