给定 $n$ 个整数 $a_1, a_2, \dots, a_n$,请你输出其中最大的一个。
第一行一个整数 $n$,表示数的个数。
第二行 $n$ 个整数,空格分隔,表示 $a_1, a_2, \dots, a_n$。
输出一行一个整数,表示 $n$ 个数中的最大值。
5 3 1 4 1 5
5