You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
492 B
17 lines
492 B
# Enter your height in meters |
|
height = float(input()) |
|
# Enter your weight in kilograms |
|
weight = int(input()) |
|
|
|
bmi = weight / (height * height) |
|
|
|
if bmi < 18.5: |
|
print(f"Your BMI is {bmi}, you are underweight.") |
|
elif bmi < 25: |
|
print(f"Your BMI is {bmi}, you have a normal weight.") |
|
elif bmi < 30: |
|
print(f"Your BMI is {bmi}, you are slightly overweight.") |
|
elif bmi < 35: |
|
print(f"Your BMI is {bmi}, you are obese.") |
|
else: |
|
print(f"Your BMI is {bmi}, you are clinically obese.")
|
|
|