public static void Main()
int[] pi = new int[] {3,1,4,1,5,9};
Console.WriteLine(pi[2]);
Console.WriteLine(pi.Length);
Console.WriteLine(pi.GetUpperBound(0));
Console.WriteLine(pi[2]);
string[] months = new string[12] { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
Console.WriteLine("What is the month (1 to 12) :");
int index = int.Parse(Console.ReadLine());
Console.WriteLine("The months is {0}", months[index-1]);