# bracy_height.py """ this is a super useful program that calculates the height of Professor Bracy in inches and feet""" all_in_inches = 68 inches = all_in_inches % 12 feet = all_in_inches // 12 print(feet) print(inches)