#include <stdio.h>int main(){ int n,i,max=0,a=0; for(i=1;i<=9;i++) { scanf("%d",&n); if(max<n) { max=n; a=i; } } printf("%d\n%d",max,a); return 0;