#ABC161A. ABC Swap
ABC Swap
题目描述
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
我们有三个方格 、 和 ,每个方格都包含一个整数。
目前,方格 、 和 分别包含整数 、 和 。
现在我们按顺序进行下面的操作。然后找出每个方格的内容。
- 交换 和 两个方格中的内容
- 调换 和 两个方格中的内容
输入格式
输入内容按以下格式标准输入:
输出格式
依次打印方框 、 和 中的整数,中间留出空格。
样例 #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
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
在交换了 和 中的内容后, 、 和 中分别包含了 、 和 。
然后, 和 的内容被交换后, 、 和 分别包含 、 和 。