height=int(input()) inches = height/ 2.54 feet = int(inches // 12) rm=round(inches % 12, 1) print("Height in feet and inches: {}' {}\"".format(feet,"%.1f"%rm))