/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author felix
 */
public class prueba_Figura {
    static public void main(String args[]){
        Figura a = new circulo(2);
        System.out.println(a.area());
        Figura b = new Rectangulo(3, 4);
        System.out.println(b.area());

        
    }

}
