# Arup Guha
# 5/14/2022
# Program that prints out numbers from start to end, with a constant "skip"
# value.

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"))

    # Getting Skip.
    step = int(input("By how much do you want to step?\n"))

    # Just run the loop and nothing else to show what i is each time.
    # End is still EXCLUSIVE.
    for i in range(start, end+1, step):
        print("i is now equal to",i)

main()
