fork download
  1. #include <stdio.h>
  2. void swap(int *a,int *b){
  3. int k = *a;
  4. *a = *b;
  5. *b = k;
  6. }
  7.  
  8. void sort(int *x, int *y){
  9. if(*x < *y){
  10. swap(x , y);
  11. }
  12. }
  13. int main(void) {
  14. int x , y;
  15. scanf("%d %d" , &x , &y);
  16. sort(&x , &y);
  17. printf("%d\n%d" , x , y);
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0.01s 5280KB
stdin
3 5
stdout
5
3