# Author: Scott Wehrwein
# Date: 04/14/2021
# Prints the sum of the first 100 positive integers.

total = 0
for i in range(1, 101):
    total += i
    
print(total)