void f1(int* a, int* b, int n)
{
	for(int i = 0; i < n; i++)
		a[i] = 1;
}
