PROGRAMMING:Er, are you fat
It is said that the latest obesity calculation method is: weight (kg) / height (m) square. EX:70kg ÷( one point seven five × 1.75)=22.86。 If it's over 25, you're fat. So this question asks you to write a program to automatically judge whether a person is fat or not.
###Input format:
Input body weight in the first line (kg)
Enter height in the second line (m)
###Output format:
Put the weight and height of the person into the calculation result of the obesity formula. If the value is greater than 25, output Pang, otherwise output Hai Xing.
###Input example:
Here is a set of inputs. For example:
```in
sixty-three
one point six five
```
```in
seventy
one point six five
```
###Output example:
The corresponding output is given here. For example:
```out
Hai Xing
```
```out
Pang
```
answer:If there is no answer, please comment
###Input format:
Input body weight in the first line (kg)
Enter height in the second line (m)
###Output format:
Put the weight and height of the person into the calculation result of the obesity formula. If the value is greater than 25, output Pang, otherwise output Hai Xing.
###Input example:
Here is a set of inputs. For example:
```in
sixty-three
one point six five
```
```in
seventy
one point six five
```
###Output example:
The corresponding output is given here. For example:
```out
Hai Xing
```
```out
Pang
```
answer:If there is no answer, please comment