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("%d", Sum);
  16. printf("%d", Min);
  17. printf("%d", Mul);
  18. printf("%d", Div);
  19. return 0;
  20. }
  21.  
  22.  
Success #stdin #stdout 0.01s 5288KB
stdin
100 25
stdout
1257525004