using System;
public class Program
{
public void Main(string[] args)
int i; for(i = 10; i >= 1; i--)
Console.WriteLine("{0}", i);
}