/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package Capitulo_4.Ecuacion_cuadratica;

/**
 *
 * @author felix
 */
public class prueba {
    static public void main(String args[]) {
        Cuadratica a = new Cuadratica(1, 1, 1);
        System.out.println(a);
    }
    
}
