PROGRAMMING:Find the students with the highest scores
Write a program, input n (n < 10) students' student numbers from the keyboard (the student number is a 4-digit integer, starting from 1000), and save the scores into the structure array, find and output the information of the students with the highest scores.
Input and output example: description in brackets, no input and output required
###Input example:
```in
three ( n=3)
1000 85
1001 90
1002 75
```
###Output example:
```out
1001 90
```
answer:If there is no answer, please comment
Input and output example: description in brackets, no input and output required
###Input example:
```in
three ( n=3)
1000 85
1001 90
1002 75
```
###Output example:
```out
1001 90
```
answer:If there is no answer, please comment