fork download
  1. #include <stdio.h>
  2. int wa(int x,int y)
  3. {
  4. return x+y;
  5. }
  6. int main(void)
  7. {
  8. printf("%d",wa(2,3));
  9. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
5