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

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

/* 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 {
		DateFormatSymbols sym = DateFormatSymbols.getInstance(new Locale("es","ar"));
        sym.setMonths(new String[]{"Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre" });
        sym.setShortMonths(new String[]{"Ene","Feb","Mar","May","Jul","Ago","Sep","Oct","Nov","Dic" });
		SimpleDateFormat date = new SimpleDateFormat("dd-MMM-yyyy", sym);
		System.out.println(date.format(new Date(2014-1900,0,1)));
		
		SimpleDateFormat date2 = new SimpleDateFormat("dd-MMMM-yyyy", sym);
		System.out.println(date2.format(new Date(2014-1900,0,1)));
	}
}