transfer this program that is written below in a program that uses a WHILE loop to calculate the number of weeks required to train for a specific running distance. and also range format if it needs to be put in range format.
def main():
print('How many miles can you run now?')
currentMiles = int(input())
print('How far do you want to be able to run?')
goalMiles = int(input())
weeks = 0
while currentMiles < goalMiles:
currentMiles + (currentMiles * .1)
weeks = weeks + 1
print('it will take you' + str(weeks) + ' weeks to train!')
main()