#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    while(cin>>n){
        if(n==0)continue;
        vector<int>v;
        int temp;
        while(n--){
            cin>>temp;v.push_back(temp);
        }
        sort(v.begin(),v.end());
        cout<<v[v.size()-1]<<" "<<v[0]<<endl;
    }
}
// 64 位输出请用 printf("%lld")

签到