using System;
public class Program
{
public static void Main()
//This will create an array to store the names of three months in a string array
string [] months = new string[3];
//This will loop through each location, prompting the user to enter a month
//and then read the month name in and store it in that location
for(int i=0;i<3;i++)
Console.WriteLine("Please enter month name");
months[i]=Console.ReadLine();
}
Console.WriteLine("This is the end of the program");
Console.WriteLine("The month at location " + i + " is " + months[i]);