public static void Main()
Console.WriteLine("Welcome to MONTHS OF THE YEAR!");
Console.WriteLine("What's your name?");
string name = Console.ReadLine();
Console.WriteLine("WOW! THAT’S MY NAME TOO, NICE TO MEET YOU, " +name+ "!");
Console.WriteLine("NICE TO MEET YOU, " +name+ "!");
Console.WriteLine("Please write the name of any month you want and I'll tell you how many days it has.");
string month = Console.ReadLine();
Console.WriteLine( month + " has 31 days.");
Console.WriteLine("Bye!");
Console.WriteLine( month + " has 30 days.");
Console.WriteLine("Bye!");
Console.WriteLine( month +" has 28 days except on leap years when it has 29 days.");
Console.WriteLine("Bye!");
Console.WriteLine("You wrote something different than a month, please start again.");