7. Write a short program that asks for your height in centimetres and then converts your height to feet and inches. (1 foot = 12 inches, 1 inch = 2.54 cm).

# 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')