Body Mass Index

No attempts yetTime limit1sMemory limit128 MB

Problem

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 valueMessage
Greater than 25Overweight
Between 18.5 and 25.0 (inclusive)Normal weight
Less than 18.5Underweight

Input

The first line contains the weight in kilograms. The second line contains the height in metres. Both values are positive real numbers.

Output

Print exactly one line: the message that corresponds to the computed BMI — Overweight, Normal weight, or Underweight.