coding practice-8

 

write a program to print integers 1 to n:

    n=int(input())

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

        print(i)

Comments