99991124 - 交换数值

通过次数

187

提交次数

225

Time Limit : 1 秒
Memory Limit : 128 MB

输入两个整数 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