PROGRAMMING:Score statistics 1
Enter a positive integer n (n > = 1), and then enter n lines of data, which shows the scores of each subject of a class. Please calculate the highest score of each course.
###Input format:
First a positive integer n (n > = 1), and then enter n rows of data
###Output format:
Output the highest score of each course
###Input example:
```in
two
{'Chinese': 95, 'Mathematics': 82,' English ': 75}
{'Chinese': 98, 'Mathematics': 72,' English ': 85}
```
###Output example:
```out
Language: 98
Mathematics: 82
English: 85
```
answer:If there is no answer, please comment
###Input format:
First a positive integer n (n > = 1), and then enter n rows of data
###Output format:
Output the highest score of each course
###Input example:
```in
two
{'Chinese': 95, 'Mathematics': 82,' English ': 75}
{'Chinese': 98, 'Mathematics': 72,' English ': 85}
```
###Output example:
```out
Language: 98
Mathematics: 82
English: 85
```
answer:If there is no answer, please comment