print integers

 print integers

    n=int(input())

    c=1

    while(c<=n):

        print(c)

        c+=1

Comments