public static void Main()
Console.Write("Enter a date (e.g. MM/DD): ");
DateTime inputDate = DateTime.Parse(Console.ReadLine());
Console.WriteLine("You should provide the report by (that's 7 days +1) on {0:dd} {1:MMMM}", inputDate.AddDays(8), inputDate.AddDays(8));