Computer Science, asked by dg6112005678, 8 months ago

write a program to enter 5 numbers by the user and find Thier sum by for loop​

Answers

Answered by Anonymous
1

Answer:

hi..

Explanation:

n=5

sum=0

for i in range(n):

a=int(input("enter the number"))

sum+=a

print(sum)

hope it helps you ☺️

Similar questions