include[HTML_REMOVED]
using namespace std;
void swap(int &x, int &y)
{
int temp;
cin >> x >> y;
temp=x;
x=y;
y=temp;
cout << x << ” ” << y;
}
int main()
{
int x,y;
cin >> x >> y;
swap(x,y);
return 0;
}