using System;
class Program
{
static void Main()
{
// Get today's date
DateTime today = DateTime.Now;
// Calculate tomorrow's date by adding one day
DateTime tomorrow = today.AddDays(1);
Console.WriteLine("Tomorrow's date is: " + tomorrow.ToString("yyyy-MM-dd"));
}
}
/*
run:
Tomorrow's date is: 2025-04-10
*/