# Arup Guha
# 9/23/2020
# Solution to Fall 2020 COP 2930 Program 4A: Mile Tracker A

# Get input.
days = int(input("How many days do you plan to run?\n"))
miles = int(input("How many miles per day do you plan to run?\n"))

# Loop through each day number
for day in range(1, days+1):

    # day represents the day and total miles run so far is the current
    # multiple of miles.
    print("After day ",day,", you will have completed ", day*miles, " miles.", sep="")

'''
#Alternate solution after reading in the input.

# Keep a separate tracker for the day.
day = 1

# Have the loop index follow the pattern of total miles ran so far.
for total in range(miles, miles*days+1, miles):
    print("After day ",day,", you will have completed ", total, " miles.", sep="")
    day += 1

'''

