class Move 
{
	int x;
	int y;

	Move(int xx, int yy)
	{
		x = xx;
		y = yy;
	}

	public int getX() { return x; }
	public int getY() { return y; }
}

