public static void Main()
Console.WriteLine("Welcome to te months of the year");
Console.WriteLine("What's your name?");
name = Console.ReadLine();
Console.WriteLine(" THAT’S MY NAME TOO, NICE TO MEET YOU, " + name + "!");
Console.WriteLine("NICE TO MEET YOU, " + name + "!");
Console.WriteLine(name + " write the name of any month and I'll tell you how many days it has.");
month= Console.ReadLine();
Console.WriteLine(month + " january has 31 days.");
Console.WriteLine(month + " february has 28 days except on leap years when it has 29 days.");
Console.WriteLine(month + " march has 31 days.");
Console.WriteLine(month + " april has 30 days.");
Console.WriteLine(month + " may has 31 days.");
Console.WriteLine(month + " june has 30 days.");
Console.WriteLine(month + " july has 31 days.");
Console.WriteLine(month + " august has 31 days.");
Console.WriteLine(month + " september has 30 days.");
Console.WriteLine(month + " october has 31 days.");
Console.WriteLine(month + " november has 30 days.");
Console.WriteLine(month + " december has 31 days.");
Console.WriteLine(" start again.");
Console.WriteLine("bye, " + name + "!");