1331: 【循环】求n个数的最大值

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:116 Solved:105

Description

任意输入n整数,把它们的最大值求出来

Input

输入只有一行,包括一个整数n(1<=n<=20),后面跟着n个数。

Output

输出只有一行,包括1个整数

Sample Input Copy

5 1 99 3 6 0

Sample Output Copy

99