#!/usr/bin/env python3

# Use input to read two numbers, the first is feet and the second is inches.
# Use the following formula to convert the height to centimeters
#  cm = (12 * feet + inches) * 2.54

# A transcript of what the correct program should print is -
# How many feet:
# How many inches:
# In cm, that is:

# If they typed 5 for feet and 6 for inches, it would print 167.64 for cm.