代码
#include <iostream>
using namespace std;
void swap(int &x, int &y)
{
// int tem;
// tem = x;
// x = y;
// y = tem;
// cout << x << " " << y;
cout << y << " " << x;
return;
}
int main()
{
int x, y;
cin >> x >> y;
swap(x, y);
return 0;
}