package Capitulo_2;

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

/**
 *
 * @author felix
 */
public class otros_tipos {
    static public void main(String args[]) {
        char a = 'a';
        boolean b = true;
        
        System.out.println(a + " " + b);
        
    }
}
