Problem1034--求最大值

1034: 求最大值

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description


输入n 个整数,输出最大值。

Input

第一行一个数T,代表接下来有几组数据。
第二行第一个数n,代表接下来有n个数;接着输入n个数。

Output

输出这n个数中的最大值

Sample Input Copy

3
4 2 123 -100 0
4 9 1 -1 8
3 1 3 5

Sample Output Copy

123
9
5