PROGRAMMING:Good! Very energetic!
![ 280px - good, energetic. PNG] (~ / 188724b5-12b1-4365-9f08-c86b3779af62. PNG)
The fourth grade students of Naval School measure whether the first grade students can drive warships by their mental value.
The calculation formula of mental value is as follows:
$$$
value=\frac{D*length}{times}
$$$
Among them, $$value $$represents the mental value of the first grade students, $$d $$represents the decibel of the first grade students' voice, $$length $$records the length of the sentence, and $$times $$records the time of speaking.
And they will test the freshmen in the following way: in unit time (i.e. $$times = 1 $$), let the freshmen introduce themselves in turn, record the decibel of their voice, and the content of self introduction.
Now the fourth graders have collected the data of all the first graders, and they want you to find the most energetic one among the first graders (that is, $$value $$largest student) and let him fly the warship. Now please help me.
###Input format
The first line is a positive integer $$n (1 / Leq n / Leq 2 / cdot 10 ^ 4) $, which represents the number of students in grade one.
Next, enter the $$n $$line, and the input format for each line is as follows:
```
name D introdutction
```
Where 'name' is a string whose length does not exceed $$20 $(i.e. $$1 / Leq | - text {name} | - Leq 20 $), $$d $$is a positive integer, and $$0 / Leq D / Leq 200 $$, and 'Introduction' is a string whose length does not exceed $$100 $(i.e. $$1 / Leq | - text {introduction} | - Leq 100 $).
**All strings consist of lowercase letters only**
###Output format
Output a total of two lines, the first line output the maximum mental value.
The second line is output in the following format
```
XXX:hao! hen you jing shen!
```
Please replace XXX with the name of the first grade student with the highest mental value.
If there are more than one student with the highest mental value, please output the first grade student's name in the above format according to the input order.
###Input sample
```in
one
pingtianyilang 0 aaaaaaa
```
###Output sample
```out
0
pingt ianyilang:hao! hen you jing shen!
```
###Tips
For example, the most energetic student is' pingtianyilang ', whose spirit value is $$0 / times6 = 0$$
answer:If there is no answer, please comment
Find the student with the largest $$value $.
It can be sorted or found directly by traversing.
The fourth grade students of Naval School measure whether the first grade students can drive warships by their mental value.
The calculation formula of mental value is as follows:
$$$
value=\frac{D*length}{times}
$$$
Among them, $$value $$represents the mental value of the first grade students, $$d $$represents the decibel of the first grade students' voice, $$length $$records the length of the sentence, and $$times $$records the time of speaking.
And they will test the freshmen in the following way: in unit time (i.e. $$times = 1 $$), let the freshmen introduce themselves in turn, record the decibel of their voice, and the content of self introduction.
Now the fourth graders have collected the data of all the first graders, and they want you to find the most energetic one among the first graders (that is, $$value $$largest student) and let him fly the warship. Now please help me.
###Input format
The first line is a positive integer $$n (1 / Leq n / Leq 2 / cdot 10 ^ 4) $, which represents the number of students in grade one.
Next, enter the $$n $$line, and the input format for each line is as follows:
```
name D introdutction
```
Where 'name' is a string whose length does not exceed $$20 $(i.e. $$1 / Leq | - text {name} | - Leq 20 $), $$d $$is a positive integer, and $$0 / Leq D / Leq 200 $$, and 'Introduction' is a string whose length does not exceed $$100 $(i.e. $$1 / Leq | - text {introduction} | - Leq 100 $).
**All strings consist of lowercase letters only**
###Output format
Output a total of two lines, the first line output the maximum mental value.
The second line is output in the following format
```
XXX:hao! hen you jing shen!
```
Please replace XXX with the name of the first grade student with the highest mental value.
If there are more than one student with the highest mental value, please output the first grade student's name in the above format according to the input order.
###Input sample
```in
one
pingtianyilang 0 aaaaaaa
```
###Output sample
```out
0
pingt ianyilang:hao! hen you jing shen!
```
###Tips
For example, the most energetic student is' pingtianyilang ', whose spirit value is $$0 / times6 = 0$$
answer:If there is no answer, please comment
Find the student with the largest $$value $.
It can be sorted or found directly by traversing.