struct point {
	int x,y;
} center;


int main(void)
{
	//center = {2,3};
	center.x = 2;
	center.y = 3;
	return 0;
}
