User talk:MANSI121999

Page contents not supported in other languages.
From Simple English Wikipedia, the free encyclopedia
  1. python program for add natural numbers

n=int(input("enter the number")) sum=0 i=1 while i<=n:

     sum=sum+i
     i=i+1

print("the sum is",sum)