public static void Main()
Console.WriteLine("DAYS OF THE WEEK!");
Console.WriteLine("Write a number from 1 to 7 and I'll tel you what day of the week it represents");
day = int.Parse(Console.ReadLine());
Console.WriteLine("your number it´s monday");
Console.WriteLine("your number it´s tuesday");
Console.WriteLine("youre number it´s wednrsday");
Console.WriteLine("you´re number it´t thursday");
Console.WriteLine("youre number it´s friday");
Console.WriteLine("youre number it´s saturday");
Console.WriteLine("youre number it´s sunday");
Console.WriteLine("your number doesn´t correspond to any day of the week");