/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		System.out.println(
			Month.MAY.getMonthOrder() 
		);
	}
}

enum Month {
    // Enum definition. Passing value to constructor. 
    JANUARY(1), FEBRUARY(2), MARCH(3), APRIL(4),MAY(5),JUNE(6), JULY(7), AUGUST(8), SEPTEMBER(9), OCTOBER(10),  NOVEMBER(11), DECEMBER(12);

    // Member field.
    private int monthOrder;

    // Constructor.
    Month (int monthOrder) {
        this.monthOrder = monthOrder;
    }

    // Accessor.
    int getMonthOrder() {
        return this.monthOrder;
    }
 }