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

PROGRAMMING:Exchange two variables

Luz5年前 (2021-05-10)题库568
Please exchange the value of two variables. Input 2 integers, and then display the 2 numbers and exchanged 2 numbles.
### Input Specification:
Input 2 integers in one line. Separate them by one space.
### Output Specification:
Output the 2 numbers in the first line, output the exchanged numbers in the second line.
Separate 2 numbers by a space.
### Sample Input:
```in
12 44
```
### Sample Output:
```out
a=12 b=44
a=44 b=12
```







answer:If there is no answer, please comment