#include <iostream>
#include <fstream>
using namespace std;
int media(int x){
int i,s=0,nr=0;
for(i=1;i<=x;i+=2){
if(x%i==0){
suma+=i;
nr++;
}
}
if(nr==0) return 0;
return suma/nr;
}
int main(){
int x, mi, ma;
f >> x;
mi = x;
ma = x;
ifstream f("nr.in");
while(!f.eof()){
f >> x;
if(media(x)==0){
if(x<mi) mi=x;
else if (x>mi) mi=x;
}
}
cout << "\nMinim : " << mi;
cout << "\nMaxim : " < <ma;
}