using System;
public class Program
{
public static void Main()
var t = string.Format("{0:ddd, MMM d, yyyy}", DateTime.Now);
Console.WriteLine(t);
}