
class CD_Test {
	public static void main(String[] args) {
		D d = new D();
		d.printGreeting();

		C c = (C)d;
		c.printGreeting();		
	}
}
