using System;
public class Program
{
public static void Main()
for ( int y=10; y>0;--y)
Console.WriteLine("{0}",y);
}