fork download
  1. #include <stdio.h>
  2. int main(void) {
  3. int func(int x, int y){
  4. if(x>=y){
  5. return x-y;
  6. }else{
  7. return y-x;
  8. }
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Standard output is empty