Problem A: 找出n个学生的学生中的最高分

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:7898 Solved:2681

Description

在n个学生的成绩中,找出最高分.

Input

第一行为一个整数n,代表学生的数目,1<=n<=100000;

第二行为n个整数,代表n个学生的成绩.

Output

输出n个学生的成绩的最高分.输出占一行

Sample Input Copy

5
90 80 65 67 88

Sample Output Copy

90