using System;
public class Program
{
public static void Main()
int[] numbers = new int[] { 2, 3, 420, 5, 69, 7, 8, 96, 31 };
for (int i = numbers.Length - 1 ; i > -1 ; i--)
Console.WriteLine("{0} ",numbers[i] );
}
Console.WriteLine();