class ShapeDemo { public static void main(String args[]){ Shape s; s = new Rectangle(20, 10); s.printDetails(); s = new A(); s.printDetails(); } }