BMI weight and height (class work )

weight = float(input(‘enter your Weight in lb’))
height = float(input(‘enter your Height’))
bmi = 703 * (weight / height ** 2)
print (” your bmi is”, bmi)
if bmi <= 18.5:
print (” you are Underweight”)
elif bmi > 18.5 and bmi <= 24.9:
print (“you are Normal weight”)
elif bmi >= 25 and bmi <=29.9:
print (“you are Overweight”)
elif bmi > 30 :
print (“you are Obesity”)
else:
print (“go to the doctor”)