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

/**
 *
 * @author felix
 */
public class algo {
    private int a;
    
    algo() {
        a=10;
    }
    
    void imprime() {
        System.out.println(a);
    }

}
