#include<iostream>
#include<fstream>
using namespace std;
int main(){
int v[100],poz=0,n,i,x,sortat,aux;
ifstream f("numere.in");
while(!f.eof()){
f>>x;
if(x>10 && x<99){
poz++;
v[poz]=x;
} }
n=poz;
do{ sortat=1;
for(i=1;i<n;i++)
if(v[i]>v[i+1]){
sortat=0;
aux=v[i];
v[i]=v[i+1];
v[i+1]=aux;
}}while(!sortat);
f.close();
cout<<v[n]<<" "<<v[n-1];
return 0; }