Assume that your body mass index (BMI) program calculated a BMI of 20.6. What would be the value of category after this portion of the program was executed? 
 # Determine the weight category.
 if BMI 39.9:
 category = "morbidly obese"
 elif BMI <= 24.9:
 category = "normal"
 elif BMI <= 39.9:
 category = "overweight" 
 The value of category will be (normal/overweight/.underweight/morbidly obese)