int swap(int *x, int *y)
{
	int tmp;

	tmp = *x;
	*x = *y;
	*y = tmp;
}

int main()
{
	int a=1, b=2;
	swap(&a, &b);
}
