class X {
	int a;
	Y x;
	
	void b ()
	{
		if (x.a == 1)
			return;
	}
}

class Y : X {

	public static int Main ()
	{
		return 0;
	}
}