import java.time.LocalDate; // import the LocalDate class
public class MyClass {
public static void main(String[] args) {
LocalDate myObj = LocalDate.now(); // Create a date object
System.out.println(myObj); // Display the current date
}
}