fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4.  
  5. double A, B, MEDIA;
  6.  
  7. scanf("%d %d",&A,&B);
  8.  
  9. MEDIA=11+A+B;
  10.  
  11. printf("MEDIA = %.5d\n",MEDIA);
  12. return 0;
  13. }
Success #stdin #stdout 0s 9424KB
stdin
5.0 7.1
stdout
MEDIA = 00001