int f(int& a, int& b)
{
	int x = a, y = b;

	x = 0;
	x = x + y;

	a = x; b = y;
}

int main()
{
	int a[2];
	int i;
	int j;
	f(a[i],a[j]);
}

