# Arup Guha
# 5/14/2022
# Program that prints out numbers 1 to n.

# Other langauges define a function main, so we'll start doing it now also,
# even though Python doesn't require it.
def main():

    # Get a number from the user.
    n = int(input("Please enter a positive integer.\n"))

    # Just run the loop and nothing else to show what i is each time.
    for i in range(n):
        print("i is now equal to",i)

# When we define a function, it does not run. We must call it to run it.
main()
