#Author: Hans W. Guesgen #Date: 25/09/06 #Ask the user to enter the number of feet and inches feet = input("Please enter the number of feet: ") inches = input("Please enter the number of inches: ") #Convert into inches inches = 12 * feet + inches #Convert into metres metres = 0.0254 * inches #Print the output to the user print metres, "metres"