using System;
public class Program
{
public static void Main()
int counter = 999;
do {
Console.WriteLine("Counter = {0}", counter);
counter ++;
} while (counter < 0);
}