bmi(weight_kg, height_m) that computes Body Mass Index as weight_kg / height_m ** 2, rounded to 1 decimal place, and returns a tuple (bmi_value, category) where category is "Underweight" if bmi < 18.5, "Normal" if 18.5 <= bmi < 25, "Overweight" if 25 <= bmi < 30, and "Obese" otherwise.bmi(70, 1.75)
(22.9, 'Normal')
70 / 1.75**2 = 22.857..., rounds to 22.9, which falls in the Normal range.
Compute the raw value first, round it, then classify the rounded value.
Use a simple if/elif/else chain on the bmi thresholds.