1882: 【数组】输出N个数中的最值

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:99 Solved:37

Description

定义一个数组,向数组中输入N个整数(1≤N ≤100),输出N个数中的最大值和最小值。

Input

输入分两行,第一行输入N,第二行为N个数字。

Output

输出两个数,最大值和最小值,中间用一个空格隔开。

Sample Input Copy

6
4  8  7  3  12  6

Sample Output Copy

12  3