The Body Mass Index (BMI) is one of the measurements a doctor uses to assess an adult's health. The doctor measures the patient's weight (in kilograms) and height (in metres), then computes the BMI with the formula
$$\text{BMI} = \frac{\text{weight}}{\text{height} \times \text{height}}$$
Given the patient's weight and height, calculate the BMI and print the message that matches the table below.
| BMI value | Message |
|---|---|
| Greater than 25 | Overweight |
| Between 18.5 and 25.0 (inclusive) | Normal weight |
| Less than 18.5 | Underweight |
The first line contains the weight in kilograms. The second line contains the height in metres. Both values are positive real numbers.
Print exactly one line: the message that corresponds to the computed BMI — Overweight, Normal weight, or Underweight.