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