100 atcoder#ABC161A. [ABC161A] ABC Swap

[ABC161A] ABC Swap

Score : 100100 points

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

  • 1X,Y,Z1001 \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.

1 2 3
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.

100 100 100
100 100 100
41 59 31
31 41 59