using System;
public class Program
{
public static void Main()
DateTime test = new DateTime(2021, 1, 31);
Console.WriteLine($"Date set: {test.ToString()}");
test = test.AddMonths(1);
Console.WriteLine($"1 month later: {test.ToString()}");
}