Respuesta :

I think this is code practice 2.3 question 2
Ver imagen xwinniethepoohx

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))

Explanation:

Got it right.

ACCESS MORE
EDU ACCESS