- 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")
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
- 2
M