Answer:
ft1= int(input("Enter the Feet: "))
in1= int(input("Enter the Inches: "))
ft2= int(input("Enter the Feet: "))
in2= int(input("Enter the Inches: "))
totalft= ft1 + ft2 + int((in1+in2)/12)
totalin= (in1+in2) % 12
print("Feet: " + str(totalft) + " Inches: " + str(totalin))