import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
String monthName = LocalDate.of(2013, 2, 27).format(DateTimeFormatter.ofPattern("MMMM"));
System.out.println(monthName); // February
monthName = LocalDate.of(2013, 2, 27).format(DateTimeFormatter.ofPattern("MMM"));
System.out.println(monthName); // Feb
}
}
/*
run:
February
Feb
*/