Answer:
ft=int(input("Enter the Feet: "))
inch=int(input("Enter the Inches: "))
ft2=int(input("Enter the Feet: "))
inch2=int(input("Enter the Inches: "))
fc=((ft + ft2)*12 + inch + inch2)//12
fc2=((ft + ft2)*12 + inch + inch2)%12
print("Feet: " + str(fc) + " Inches: " + str(fc2))
Step-by-step explanation:
Got it right.