#include <stdio.h>
int main()
{
int x , max , maxIndex ;
int i ;
for( i = 0 ; i < 10 ; ++i )
{
scanf("%d", &x ) ;
if( i == 0 )
{
max = x ;
maxIndex = 0 ;
}
else
{
if( x > max )
{
max = x ;
maxIndex = i ;
}
}
}
printf("最大的数:%d 下标:%d\n", max , maxIndex + 1 ) ;
return 0 ;
}