coding practice-8

 write a program to print the sum of N natural numbers:

       

        n=int(input())

        s=0

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

            s+=i

        print(s)


Comments