#ABC161A. ABC Swap

ABC Swap

题目描述

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

我们有三个方格 AABBCC ,每个方格都包含一个整数。
目前,方格 AABBCC 分别包含整数 XXYYZZ
现在我们按顺序进行下面的操作。然后找出每个方格的内容。

  • 交换 AABB 两个方格中的内容
  • 调换 AACC 两个方格中的内容

输入格式

输入内容按以下格式标准输入:

XX YY ZZ

输出格式

依次打印方框 AABBCC 中的整数,中间留出空格。

样例 #1

样例输入 #1

1 2 3

样例输出 #1

3 1 2

样例 #2

样例输入 #2

100 100 100

样例输出 #2

100 100 100

样例 #3

样例输入 #3

41 59 31

样例输出 #3

31 41 59

说明

数据规模与约定

  • 1X,Y,Z1001 \leq X,Y,Z \leq 100
  • 所有输入值均为整数。

样例 11 解释

在交换了 AABB 中的内容后, AABBCC 中分别包含了 221133
然后, AACC 的内容被交换后, AABBCC 分别包含 331122