running speed codehs miles_ran=int(input("How many miles did you run? ")) time_ran=int(input("How long did you run for (in minutes)? " )) running_speed=miles_ran/time_ran*60 print("Your running speed was " +str(running_speed)+ " mph") running speed codehs