# This sums the numbers from 1 to 100

sum = 0
for x in range(1, 101):
    sum = sum + x

print( "The sum of the numbers from 1 to 100 is", sum )
