1051: 找数组的最大数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:125 Solved:80

Description

从键盘读入n个整数,请问这n个整数的最大数是多少?

Input

第1行读入一个整数n(n<=100);

第2行读入n个整数;

Output

输出数组中的最大数;

Sample Input Copy

5
2 1 5 3 4

Sample Output Copy

5

Source/Category