package com.bootcamp20_10.carteles; public class Main { public static void main(String[] args){ Forma rectangulo = new Rectangulo(10f, 5f, "Azul"); Forma ciculo = new Circulo(9.2f, "Amarillo"); Cartel cartel1 = new Cartel(rectangulo, "Atencion Escuela"); Cartel cartel2 = new Cartel(ciculo, "Atencion Escuela"); cartel1.rellenarForma(); cartel2.rellenarForma(); } }