1098: 长跑第一名

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:270 Solved:154

Description

学院中有长跑比赛,请找出第一名的成绩。

Input

输入两行,第一行为整数n(1 <= n < 100),表示参加跑步的人数。第二行是这n个学生的跑步时长,相邻两个数之间用单个空格隔开。

Output

输出一个整数,即第一名的成绩。

Sample Input Copy

5
85 78 90 99 60

Sample Output Copy

60

HINT

数据范围:

$0\lt 学生的跑步时长 \le100$

Source/Category