fork(1) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(void)
  4. {
  5. int h,c,k;
  6. scanf("%d,%d,%d",&h,&c,&k);
  7.  
  8. printf("volume:%d*%d*%d=%d",h,c,k,h*c*k);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5292KB
stdin
5
6
6
stdout
volume:5*-63501504*32766=-1040609408