-->
当前位置:首页 > 题库

PROGRAMMING:2 increasing numbers

Luz5年前 (2021-05-10)题库442
Given 2 integers A and B, you are supposed to output them in increasing order.
### Input Specification:
Each input file contains one test case, which gives A and B in a line. Seperate them by a space.
### Output Specification:
For each test case, print in a line the value of A,B. Seperate them by a space.
### Sample Input:
```in
17 -3
```
### Sample Output:
```out
-3 17
```







answer:If there is no answer, please comment