0
Without using any string methods, print 123...N
please explain the above question with neat explanation
1 Odpowiedź
0
if __name__ == '__main__':
n = int(input())
for i in range(1,n+1,1):
print(i,end="")
please explain the above question with neat explanation