Answer:
Answered below
Step-by-step explanation:
weight = float(input("Enter weight in lbs: "))
height_in_feet = float(input ("Enter height in feet: "))
height_in_inches = float(input("Enter height in inches: "))
total_height = height_in_feet + (height_in_inches * 0.0833)
weight_in_kg = weight * 0.454
bmi = weight_in_kg/ (total_height ** 2)
print (bmi)