Swap Two Integers


Submit solution

Points: 100
Time limit: 2.0s
Memory limit: 256M

Author:
Problem types

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

Comments

There are no comments at the moment.