using System;
public class Program
{
public static void Main()
var now = DateTime.Now;
var gg = now.AddMonths(-1);
Console.WriteLine(gg);
}