99991124 - 交换数值

输入两个整数 x 和 y,请你编写一个函数,void swap(int &x, int &y), 交换两个整数的数值并输出交换后的 x 和 y。 数据范围 1≤x,y≤100

Input

共一行,包含两个整数 x 和 y。

Output

共一行,包含交换后的 x 和 y。

Examples

Input

3 5

Output

5 3
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题