#Author: Andrew Luxton-Reilly #Date: 7/05/06 #Ask the user to enter the number of centimetres cm = input("Please enter the number of centimetres: ") #Calculate the number of metres and centimetres m = cm / 100 cm = cm % 100 #Print the output to the user print m, "metres and", cm, "centimetres"