using System;
public class Program
{
public static void Main()
{ int n=1;
float m=-101;
for(int i=0;n>m;i--){
Console.WriteLine(n);
n--;
}}
}