using System;
class Program{static void Main(){Console.WriteLine("Введите настоящую дату в формате ДД.ММ.ГГГГ:");string currentDateInput = Console.ReadLine();DateTime currentDate = DateTime.Parse(currentDateInput);
}
using System;
class Program
Console.WriteLine("Введите количество прошедших месяцев:");{
static void Main()
{
Console.WriteLine("Введите настоящую дату в формате ДД.ММ.ГГГГ:");
string currentDateInput = Console.ReadLine();
DateTime currentDate = DateTime.Parse(currentDateInput);
int monthsPassed = int.Parse(Console.ReadLine());
DateTime unknownDate = currentDate.AddMonths(-monthsPassed);
Console.WriteLine("Неизвестная дата: " + unknownDate.ToShortDateString());
}
}