public static void Main()
Console.Write("please enter month:");
month = int.Parse(Console.ReadLine());
if (month < 1 || month > 12)
Console.WriteLine("Error!");
if ((month == 1) || (month == 3) || (month == 5) || (month == 7) || (month == 8) || (month == 12))
Console.WriteLine("month = 31");
Console.WriteLine("month = 28");
Console.WriteLine("month = 30");