public static String findDay(int month, int day, int year) { LocalDate ld=LocalDate.of(year,month,day); return ld.getDayOfWeek().name();