Swap Two Integers
Swap two integers \(a\) and \(b\).
Input
One line containing \(a\) and \(b\).
The input satisfies:
- \(0 <= a, b <= 10^6\)
Output
Print \(b\) followed by \(a\), separated by one space.
Example
Input
1 2
Output
2 1
Swap two integers \(a\) and \(b\).
One line containing \(a\) and \(b\).
The input satisfies:
Print \(b\) followed by \(a\), separated by one space.
1 2
2 1
Comments