// use of This -- trace the calls. what will be the output?

class A {
	private int i;
	A () {i=10;}
	public void f() {System.out.println("A::f " + i);
			this.f();
	}
}
class B extends A {
	private int j;
	B() {j=20;}
	public void f() {
		System.out.println("B::f " + j);
		super.f();
	}
	public void g() {System.out.println("B::g " + j);}
}

class This {
	public static void main (String args[]) {
		A a = new B();
		a.f();
	}
}

