#abc161a. [abc161_a]ABC Swap

[abc161_a]ABC Swap

Problem Statement

We have three boxes AA, BB, and CC, each of which contains an integer.
Currently, the boxes AA, BB, and CC contain the integers XX, YY, and ZZ, respectively.
We will now do the operations below in order. Find the content of each box afterward.

  • Swap the contents of the boxes AA and BB
  • Swap the contents of the boxes AA and CC

Constraints

  • 1leqX,Y,Zleq1001 \\leq X,Y,Z \\leq 100
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

XX YY ZZ

Output

Print the integers contained in the boxes AA, BB, and CC, 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 AA and BB are swapped, AA, BB, and CC contain 22, 11, and 33, respectively.
Then, after the contents of AA and CC are swapped, AA, BB, and CC contain 33, 11, and 22, 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