fork download
  1. #include <stdio.h>
  2.  
  3. int func(int x, int y){
  4. if(x>y)
  5. return x-y;
  6. else
  7. return y-x;
  8.  
  9. }
  10.  
  11. int main(void) {
  12.  
  13. int x,y;
  14.  
  15. scanf("%d,%d",&x,&y);
  16.  
  17. printf("%d",func(x,y));
  18.  
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5324KB
stdin
5,12
stdout
7