import java.time.LocalDate;
import java.util.Date;
public class MyClass {
public static void main(String args[]) {
Date now = new Date();
LocalDate ld = LocalDate.of(now.getYear() + 1900,
now.getMonth() + 1,
now.getDate());
System.out.println(ld);
}
}
/*
run:
2022-03-05
*/