For my CS class in school i need to print feet next to inches and i keep getting the error
"TypeError: unsupported operand type(s) for Add: 'int' and 'str' on line 10"
I hope someone can help
x = float(input('Enter the Feet: '))
y = float(input('Enter the Inches: '))
a = float(input('Enter the Feet: '))
b = float(input('Enter the Inches: '))
ftoin1 = float(x * 12)
ftoin2 = float(a * 12)
final = (int(ftoin1 + int(ftoin2) + int(y) + int(b)))
final2 = (int(final) // 12)
final3 = (int(final) % 12)
print(str('Feet: '), + int(final2) + ('Inches: '), + int(final3))