class Runner {
	public static void main (String[] args) {
		Child c = new Child();
		c.method();
	}
}

class Super {
	protected void method() {
		System.out.println("Super");
	}
}

class Intermediate extends Super {}

class Child extends Intermediate {
	@Override
	public void method() {
		super.method();
	}
}