import java.time.LocalDate;

class Main {
    public static void main(String args[]) {
        String strDateTime = "2009-06-22";
        LocalDate date = LocalDate.parse(strDateTime);
        System.out.println(date);
        System.out.printf("Day: %d, Month: %d, Year: %d", date.getDayOfMonth(), date.getMonthValue(), date.getYear());
    }
}