fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x;
  5. int y;
  6. int z;
  7. int Sum;
  8. int Mul;
  9. scanf("%d %d %d", &x, &y, &z);
  10. Sum = x + y + z;
  11. Mul = x * y * z;
  12. printf("jogfol is %d\n", Sum);
  13. printf("gunfol is %d\n", Mul);
  14. return 0;
  15. }
  16.  
  17.  
Success #stdin #stdout 0.01s 5288KB
stdin
10 2 1000
stdout
jogfol is 1012
gunfol is 20000