Computer Science, asked by shreeshaprasad1417, 4 months ago

Write a program in python to find the sum of first ten natural numbers.​

Answers

Answered by Anonymous
3

num = int(input("Enter a number: "))

if num < 0:

print("Enter a positive number")

else:

sum = 0

# use while loop to iterate un till zero

while(num > 0):

sum += num

num -= 1

print("The sum is",sum)

output in attachment

Attachments:
Similar questions