Java tutorial
import java.time.MonthDay; public class Main { public static void main(String[] args) { MonthDay m = MonthDay.now(); int n = m.getMonthValue(); System.out.println(n); } }