using System;
public class Program
{
public static void Main()
var now = DateTime.Now;
var newDate=now.AddDays(7+45);
Console.WriteLine(newDate);
}