fork download
  1. #include<stdio.h>
  2. void swap(int *x,int *y){
  3. int temp;
  4. temp=*x;
  5. *x=*y;
  6. *y=temp;
  7. }
  8. void sort(int *x,int *y){
  9. int w;
  10. if(*x<*y){
  11. swap(x,y);
  12. }
  13. }
  14. int main(){
  15. int x,y;
  16. scanf("%d",&x);
  17. scanf("%d",&y);
  18. sort(&x,&y);
  19.  
  20. printf("%d,%d",x,y);
  21.  
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0s 5268KB
stdin
Standard input is empty
stdout
1554930848,32764