import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Locale;

public class Main {

    public static void main(String[] args) {
	// write your code here
        Locale locale = new Locale("es", "NI", "");
        String pattern = ((SimpleDateFormat)DateFormat.getDateInstance(DateFormat.MEDIUM, locale)).toLocalizedPattern();
        System.out.println(pattern);

    }
}
