using System;
public class Program
{
public static void Main()
var dayOfTheWeek = DateTime.Today.DayOfWeek;
Console.WriteLine(dayOfTheWeek);
}