public class ShapeUtil { public static void printArea(Shape shape) { System.out.println("Area: " + shape.getArea()); } public static void drawShape(Shape s) { s.draw(); } }