/*
 * 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_2;

/**
 *
 * @author felix
 */
public class prueba {
    static public void main(String args[]) {
        Entero a = new Entero(4);
        
        System.out.println(a.getValue());
        a.imprime();
        System.out.println(a);
        
        Integer b = new Integer(6);
        
        System.out.println(b);
    }
}
