using System;
public class Program
{
public static void Main()
int counter = 100;
while (counter > 10 )
Console.WriteLine( counter + " ");
counter = counter - 10;
}
}// end class
}// end main