public class Main { public static void main(String[] args) { shape c = new Circle(2); shape r = new Rectangle(3, 4); shape t = new Triangle(10, 5); ShapeUtil.printArea(c); ShapeUtil.printArea(r); ShapeUtil.printArea(t); } }