#Z17101. 最高分数的学生姓名
最高分数的学生姓名
Description
Enter the number of students, then input each student's score and name, and output the name of the student with the highest score.
Input Format
The first line contains a positive integer N (N ≤ 100), representing the number of students. This is followed by N lines, each formatted as follows:
Score Name
Score is a non-negative integer and does not exceed 100.
Name is a continuous string without spaces, with a length not exceeding 20.
It is guaranteed that only one student has the highest score.
Output Format
The name of the student with the highest score.
```input1 5 87 lilei 99 hanmeimei 97 lily 96 lucy 77 jim```output1
hanmeimei
## Source
CodesOnline