public static void Main()
Console.WriteLine("Welcome to 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("Please write the name of any month and I'll tell you how many days it has: ");
months = Console.ReadLine();
Console.WriteLine(" The month of " + months + " has 31 days. ");
Console.WriteLine(" The month of " + months + " has 30 days. ");
Console.WriteLine(" The month of " + months + " has 28 days. ");
Console.WriteLine("That's not a month, please start again");