# Given a total amount of inches, convert the input into a readable output in feet and inches 

totalInches = int(input("Enter total inches: "))
feet = int(totalInches/12); 
inches = int(totalInches - feet*12); 
print(f'{feet}\'{inches}"')

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: