Normal weight example
Input
weight_kg=70, height_m=1.75
Output
Normal weight
BMI = 70 / 1.75^2 ≈ 22.86, which is between 18.5 and 25.
Full lesson preview
Compute BMI and return a WHO-style category using conditional logic.
Problem statement
Task
Examples
Input
weight_kg=70, height_m=1.75
Output
Normal weight
BMI = 70 / 1.75^2 ≈ 22.86, which is between 18.5 and 25.
Input format
Output format
Constraints
Samples
Input
50, 1.8
Output
Underweight
BMI ≈ 15.43 -> Underweight.