#include<iostream>
using namespace std;
int main(){
int a[100];
for(int i = 0;i < 100;i ++) scanf("%d\n",&a[i]);
int max = a[0];
int position = 0;//定义局部变量不赋初值 他的值是随机的
for(int i = 0;i < 100;i ++){
if(a[i] > max) {
max = a[i];
position = i;
}
}
cout << max << endl << position + 1<< endl;
return 0;
}