total = 0
for i in range(1, 101):
    print(total, '+', i, 'is', total + i)
    total = total + i
print('Final answer:', total)
