public static void Main()
Console.WriteLine("WEEK");
Console.WriteLine("Write a number from 1 to 7 and I'll tell you what day of the week it represents");
num = int.Parse(Console.ReadLine());
Console.WriteLine("CORRESPONDS TO MONDAY");
Console.WriteLine("CORRESPONDS TO TUESDAY");
Console.WriteLine("CORRESPONDS TO WEDNESDAY");
Console.WriteLine("CORRESPONDS TO THURSDAY");
Console.WriteLine("CORRESPONDS TO FRIDAY");
Console.WriteLine("CORRESPONDS TO SATURDAY");
Console.WriteLine("CORRESPONDS TO SUNDAY");
Console.WriteLine("NO, YOUR NUMBER IS OUT OF RANGE");