# Arup Guha
# 5/14/2022
# Program that prints out numbers start to end, where the user chooses both
# bounds.

def main():

    # Get starting and ending numbers from user.
    start = int(input("Please the starting integer.\n"))
    end = int(input("Please the end integer.\n"))

    # Just run the loop and nothing else to show what i is each time.
    # Notice that the ending range is EXCLUSIVE.
    for i in range(start, end+1):
        print("i is now equal to",i)

main()
