Write a python program to add Loop
#Python program-3 to add 10 numbers from keyboard using for loop
sum = 0
for i in range(10):
num = int(input('Please Enter a Number: '))
sum = sum + num
print('The Sum of The 10 Numbers is: ', sum)