fork download
  1. #include <stdio.h>
  2.  
  3. short add_ok( short x, short y ){
  4. short sum = x+y;
  5. return sum;
  6. }
  7.  
  8. int main(void) {
  9.  
  10. short i, ii;
  11. scanf("%hd %hd", &i, &ii);
  12.  
  13. printf("%hd", add_ok(i, ii));
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0.01s 1680KB
stdin
32767 2
stdout
-32767