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

/**
 *
 * @author felix
 */
public class prueba_Fecha {
    static public void main(String args[]) {
        Fecha f1 = new Fecha(11, 14, 1231);
        Fecha f2 = new Fecha(f1);
        
        System.out.println(f1.getAño() + " " + f1.getMes() + " " + f1.getDia());
        System.out.println(f2.getAño() + " " + f2.getMes() + " " + f2.getDia());
    }

}
