using System;
public class Program
{
public static void Main()
int n,i;
Console.WriteLine("ingrese un numero");
n = 20;
i =20;
while (i <=n)
Console.WriteLine(i);
i = i - 1;
}