static void Main(string[] args) { Rectangulo r = new Rectangulo(3, 5, "Rojo"); r.dibuja(); Circulo c = new Circulo(6, 10, "Negro"); c.dibuja(); }