# bmi puzzle # # underweight = < 18.5 # normal weight = 18.5 - 24.9 # overweight 25-29.9 # obese = > 30 # # indenting missing and conditionals in if statements missing # fix and email to me # h = input("What is your height in inches? ") w = input("What is your weight in pounds? ") height = int(h) weight = int(w) bmi = weight * 703 / height**2 if: print("You are underweight.") print("You should eat more food") elif: print("Good news!!!") print("Your weight is in normal limits.") elif: print("You are overweight") else: print("You are obese") print("Thanks for using the BMI calculator")