Respuesta :
This is what I got for the code. And I tested it out on the right and it works.

The program illustrates the use of arithmetic operations.
The program in Python where comments are used for explanation is as follows:
#This gets input for the number of miles
miles = int(input("How many miles did you run? "))
#This gets input for the number of minutes
minutes = int(input("How many minutes did it take you? "))
#This calculates the speed in mph
Speed = miles/(minutes/60.0)
#This prints the calculated speed
print("Speed in mph:",Speed)
At the end of the program, the program converts the minutes to hours, calculates and prints the speed.
See attachment for complete program and sample run
Read more about Python programs at:
https://brainly.com/question/22841107
