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

package datumy;

/**
 *
 * @author Hawk
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        DateMaker test = new DateMaker();
        System.out.println(test.isValidDate("29.02.2004"));
        System.out.println(test.isValidDate("29.02.2005"));
    }

}
