public class
Months {
static
String months[]={"januray","February","March","April","May","June","July","August","September","Octomber","Novembver","December"};
public static void main(String args[])
{
int m=Integer.parseInt(args[0]);
System.out.println(months[m]);
}
}
red color shows here exceptions thrown in my project