for (int i = 10; i >= 0; i--)
{
    Console.WriteLine("Countdown: " + i);
}