using System;
using System.Globalization;
using System.Threading;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
DateTime now = DateTime.Now;
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");
string hour = now.ToString("ddd ");
Console.WriteLine($"{hour}");
}
}
}
/*
run:
Tue
*/