# Code
h = int(input('Enter your height in centimetres : '))
h = h/2.54 # height in inches
print('Height is', h//12, 'feets and', h%12, 'inches')
# Code
h = int(input('Enter your height in centimetres : '))
h = h/2.54 # height in inches
print('Height is', h//12, 'feets and', h%12, 'inches')