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