using System;
public class Program
{
public static void Main()
int counter = 10 ;
while (counter > -1) {
Console.WriteLine(counter);
counter--;
}