public class A extends B	 {
			
		  A()	{
		    System.out.println("In the A constructor");
		    }
			
		  public static void main (String [] args)	{
		    A a = new A();
		    }
		};
			
		class B extends C	 {
			
		  B()	{
		    System.out.println("In the B constructor");
		    }
		};
			
		class C	{
			
		  C()	{
		    System.out.println("In the C constructor");
		    }
		};