using System;
public class Program
{
public static void Main()
var date = DateTime.Now.AddDays(-14);
Console.WriteLine(date.ToString("dd MMMM"));
}