height_cm = input('183') # Константы cm_per_inch = 2.54 inch_per_foot = 12 # Напишите тут ваш код height_inch = height_cm / cm_per_inch feet = int(height_inch // inch_per_foot) inches = height_inch % inch_per_foot print(feet'футов', inches'дюймов')