fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. #ifdef LOCAL
  5. freopen("a.in", "r", stdin);
  6. freopen("a.out", "w", stdout);
  7. #endif
  8. int a, b, c;
  9. scanf("%d%d", &a, &b);
  10. c=a+b;
  11. printf("%d", c);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5480KB
stdin
2 3
stdout
5