using System;
public class Program
{
public static void Main()
// Set runDate and offsetDays, click Run
// YYYY MM DD
DateTime runDate = new DateTime(2018, 3, 25);
int offsetDays = -33;
Console.WriteLine("Process refunds created on or before " + runDate.AddDays(offsetDays).ToString("d"));
}