# Joe Schmoe
# Program    : numsCh2.py
# Description: convert given ft/min into mph
# Input      : ft/min
# Ouput      : corresponding miles per hour

def main ():
    ftPerMin = eval (input ("Enter ft/min: "))
    mph = ftPerMin * 60 / 5280
    print ("MPH:", mph)
main()