#include<iostream>
using namespace std;
void Swap (int a, int b )
{
int c;
c = a; a = b; b = c;
}
main()
int x = 1, y = 2;
Swap ( x, y );
cout << "x = " << x << ", y = " << y;