import java.util.Date;public class MainClass { public static void main(String[] args) { Date now = new Date(); System.out.printf("localized month name: %tB/%TB\n", now, now); }}// localized month name: May/MAY