int i;float a[10],sum=0;for(i=0;i<10;++i){ scanf("%f",&a[i]);sum+=a[i];} printf("%.2f",sum/10);return 0;}