Time Limit: 2 sec / Memory Limit: 1024 MB
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
-
1 \leq X,Y,Z \leq 1001≤X,Y,Z≤100
-
All values in input are integers.
Input
Input is given from Standard Input in the following format:
XXYYZZ
Output
Print the integers contained in the boxes AA, BB, and CC, in this order, with space in between.