public static void Main()
Console.WriteLine("Enter the day of the week");
var day=int.Parse(Console.ReadLine());
string[]daysOfweek={"Monday","Tuesday","Wendsday","Thursday","Friday","Saturday","Sunday" };
Console.WriteLine("Invalid");
Console.WriteLine(daysOfweek[day-1]);