Canadian Computing Competition: 2008 Stage 1, Junior #1
The Body Mass Index (BMI) is one of the calculations used by doctors to assess an adult's health. The doctor measures the patient's height (in metres) and weight (in kilograms), then calculates the BMI using the formula:
Write a program which takes the patient's weight and height as input, calculates the BMI, and displays the corresponding message from the table below.
BMI Category | Message |
---|---|
More than |
Overweight |
Between |
Normal weight |
Less than |
Underweight |
Sample Input 1
Copy
69
1.73
Output for Sample Input 1
Copy
Normal weight
Explanation of Output for Sample Input 1
The BMI is
Sample Input 2
Copy
84.5
1.8
Output for Sample Input 2
Copy
Overweight
Explanation of Output for Sample Input 2
The BMI is
Comments