A strange game is being played in P.E. class. In the game,
Constraints
For all test cases:
- Each student's name will not exceed
characters. - All student names are distinct.
- There is only one winner.
Note: You must pass all test cases in order to earn points on this problem.
Input Specification
The first line contains two integers
The next
Output Specification
Output the name of the student who will win.
Sample Input
Copy
5 10
Alice 2
Bob 7
Carol 8
Dave 13
Eve 17
Sample Output
Copy
Carol
Comments