public static void Main()
Console.WriteLine("Enter the number of the day in the month");
int day = int.Parse(Console.ReadLine());
Console.WriteLine("you are in the middle of the month");
Console.WriteLine("you are after the middle of the month");
Console.WriteLine("you are before the middle of the month");
Console.WriteLine("Error");