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

/**
 *
 * @author felix
 */
public class prueba_circulo {
    static public void main(String args[]) {
        circulo a = new circulo(2);
        
        a.asigna_radio(-4);
        System.out.println(a.obten_radio());
    }

}
