游客 Signup | Login
中文 | En

3985 - 交换ab

输入a,b,交换他们的值

Input

整数a,b

Output

b,a

Examples

Input

1 2

Output

2 1

Solution C++

#include<iostream>
using namespace std;
int main()
{
  long long a,b;
  cin >>a>>b;
  cout<<b<<" "<<a;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题