Problem
Create a program that will ask the user for the number of miles they need to travel. The program will then convert those miles to kilometers. There are 1.609344 miles to every kilometer. The program needs to output the number of kilometers.The input prompt for this program is pretty simple. It is:
Miles:__
Where the two underscores represent blank spaces. The output is also very simple:
Kilometers:__
Where the two underscores represent blank spacesWhen running, using 15 for miles your program will look like the following:
Miles: 15
Kilometers: 24.14016