using System;
public class Program
{
public static void Main()
var year = DateTime.Now.Year;
var month = DateTime.Now.Month;
Console.WriteLine($"The last day of month {month} in the year {year} is {DateTime.DaysInMonth(year, month)}");
}