Answer:
def print_total_inches (num_feet, num_inches):
print('Total inches:', num_feet * 12 + num_inches)
print_total_inches(5, 8)
Explanation:
I'm not sure what language you needed this written in but this would define it in Python.
def calc_total_inches(num_feet, num_inches):
return num_feet*12+num_inches
Step-by-step explanation:
5.5m questions
7.1m answers