CPython lite logoProblemsContests

2067. Body Mass Index #2

The body mass index is calculated using the following formula: I=m/h2​, where m is body weight in kilograms, h is height in meters.

Based on the information presented in this picture, determine the category of the body mass index.

Body Mass Index: Facts and Myths


Input

The first line contains a natural number,m(1m100).

The second line contains a decimal number,h(1.00h2.00).

Output

Output the answer to the problem.


Sample input 1

69
1.78

Sample output 1

Normal

Sample input 2

80
1.78

Sample output 2

Overweight

Login to be able to submit.