Computer Science, asked by marvelTae, 5 months ago

Without using any string methods, try to print the following:
123 ...n​

Answers

Answered by shrutivrm19
1

Answer:

n=int(input())

for i in range(1,n+1):

print(i,sep=" ",end="")

Explanation:

In python

Similar questions