#include<iostream> using namespace std; int main(){ int a[20],s,max; for(int i=1;i<=10;i++){ cin>>a[i]; if(max<a[i]){ max=a[i]; s=i;} } cout<<s; }