Emily is very tall. In fact, she is one of the tallest people in the school!
You are given the heights of students from Mackenzie. Print Emily's height!
Input Specification
The first line will contain the integer , the number of students.
The second line will contain integers, , the heights of the people in the school.
Note that it is not guaranteed the heights of each student is unique.
Output Speciciation
On the first line, print Emily's height (the largest height in the input)!
Subtasks
Subtask 1 [30%]
Subtask 2 [70%]
No further constraints.
Sample Input 1
5
1 4 2 6 6
Sample Output 1
6
Sample Input 2
2
999999 1000000
Sample Output 2
1000000
Comments