Score : $100$ points
We have three boxes $A$, $B$, and $C$, each of which contains an integer.
Currently, the boxes $A$, $B$, and $C$ contain the integers $X$, $Y$, and $Z$, respectively.
We will now do the operations below in order. Find the content of each box afterward.
Input is given from Standard Input in the following format:
$X$ $Y$ $Z$
Print the integers contained in the boxes $A$, $B$, and $C$, in this order, with space in between.
1 2 3
3 1 2
After the contents of the boxes $A$ and $B$ are swapped, $A$, $B$, and $C$ contain $2$, $1$, and $3$, respectively.
Then, after the contents of $A$ and $C$ are swapped, $A$, $B$, and $C$ contain $3$, $1$, and $2$, respectively.
100 100 100
100 100 100
41 59 31
31 41 59