public static void main(String[] args) {
String task = "Send weekly report";
LocalDate localDate = LocalDate.now();
LocalTime localTime = LocalTime.now();
DateTimeFormatter dateFormat = DateTimeFormatter.ofPattern("dd/MM/yyyy");
DateTimeFormatter timeFormat = DateTimeFormatter.ofLocalizedTime(FormatStyle.SHORT);
System.out.println("Date : " + localDate.format(dateFormat));
System.out.println("Time : " + localTime.format(timeFormat));
}