- 1

What is the problem

#your code goes here weight = float(input()) height = float(input()) BMI = round(weight/(height**2)) if BMI < 18.5: print("Underweight") elif BMI >= 18.5 and BMI < 25: print("Normal") elif BMI >= 25 and BMI < 30: print("Overweight") elif BMI >= 30: print("Obesity") else: print("check your input")

1st May 2022, 12:15 AM
mobin___2001
mobin___2001 - avatar
3 Answers
+ 1
mobin___2001 stop creating multiple post of your questions, always wait for your answer👇👇👇👇 https://www.sololearn.com/Discuss/3026049/?ref=app
1st May 2022, 1:18 AM
NonStop CODING
NonStop CODING - avatar
- 2
M
1st May 2022, 12:15 AM
mobin___2001
mobin___2001 - avatar