/*
 * 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.Triangulos;

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