fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x;
  5. int y;
  6. int Sum;
  7. int Min;
  8. int Mul;
  9. int Div;
  10. scanf("%d %d", &x, &y);
  11. Sum = x + y;
  12. Min = x - y;
  13. Mul = x * y;
  14. Div = x / y;
  15. printf("Result is %d", Sum);
  16. return 0;
  17. }
  18.  
  19.  
Success #stdin #stdout 0.01s 5280KB
stdin
100 25
stdout
Result is 125