public static void Main()
Console.WriteLine("Enter the number of years you want to add.");
int years = int.Parse(Console.ReadLine());
static void AddsYears(int n)
DateTime today = DateTime.Now;
DateTime newDate = today.AddYears(n);
Console.WriteLine("After {0} years from now, we will be in {1}.", n, newDate.ToShortDateString());