public static void Main()
Console.WriteLine("Days of the week");
Console.WriteLine("write a number from 1 to 7 and i'll tell you what day of the week it represents!");
day = int.Parse(Console.ReadLine());
Console.WriteLine("your number represents monday");
Console.WriteLine("YOUR NUMBER REPRESENTS TUESDAY");
Console.WriteLine("your number represents wednesday");
Console.WriteLine("your number represents thursday");
Console.WriteLine("your number represents friday");
Console.WriteLine("your number represents saturday");
Console.WriteLine("your number represents sunday");
Console.WriteLine("try again, your number is out of range:(");