#abc161a. [abc161_a]ABC Swap
[abc161_a]ABC Swap
Problem Statement
We have three boxes , , and , each of which contains an integer.
Currently, the boxes , , and contain the integers , , and , respectively.
We will now do the operations below in order. Find the content of each box afterward.
- Swap the contents of the boxes and
- Swap the contents of the boxes and
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the integers contained in the boxes , , and , in this order, with space in between.
Sample Input 1
1 2 3
Sample Output 1
3 1 2
After the contents of the boxes and are swapped, , , and contain , , and , respectively.
Then, after the contents of and are swapped, , , and contain , , and , respectively.
Sample Input 2
100 100 100
Sample Output 2
100 100 100
Sample Input 3
41 59 31
Sample Output 3
31 41 59