# Arup Guha
# 9/17/2020
# Loop program showing use of loop index.

# i goes from 0 to 99.
for i in range(100):

    # So I can just print i+1 and #s 1 to 100 will print.
    print(i+1)
