PROGRAMMING:Is it too fat
It is said that a person's standard weight should be the kilogram obtained by subtracting 100 from his height (unit: cm) and multiplying by 0.9. If the error between the real weight and the standard weight is less than 10%, it is a perfect figure (that is, | real weight $- $$standard weight | $< $$standard weight $$times 10 \% $). It is known that the market weight is twice the kilogram. Now, given the height and actual weight of a group of people, please tell them whether they are too fat or too thin.
###Input format:
Enter the first line to give a positive integer 'n' ($$$Le $$20). Then, in the 'n' line, two integers are given for each line, which are the height of a person 'H' (120 $$< h $$< 200; Unit: cm) and real weight ` W '(50 $$< $$W $$$Le $$300; Unit: market weight), separated by spaces.
###Output format:
Output a line for each person conclusion: if you are in perfect shape, output "you are Wan Mei!"; If you are too fat, output 'you are Tai Pang Le!'; Otherwise, output "you are Tai Shou Le!".
###Input example:
```in
three
169 136
150 81
178 155
```
###Output example:
```out
You are wan mei!
You are tai shou le!
You are tai pang le!
```
answer:If there is no answer, please comment
###Input format:
Enter the first line to give a positive integer 'n' ($$$Le $$20). Then, in the 'n' line, two integers are given for each line, which are the height of a person 'H' (120 $$< h $$< 200; Unit: cm) and real weight ` W '(50 $$< $$W $$$Le $$300; Unit: market weight), separated by spaces.
###Output format:
Output a line for each person conclusion: if you are in perfect shape, output "you are Wan Mei!"; If you are too fat, output 'you are Tai Pang Le!'; Otherwise, output "you are Tai Shou Le!".
###Input example:
```in
three
169 136
150 81
178 155
```
###Output example:
```out
You are wan mei!
You are tai shou le!
You are tai pang le!
```
answer:If there is no answer, please comment