Arithmatic Operators

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)