using System;
public class Program
{
//Q8: Write a program that takes 10 elements from the user and saves it to array1. Declare another array array2.
//Copy the contents of array1 to array 2 in reverse order. Print elements of array2
public static void Main()
int i;
int[] array1 = new int[10];
for (i = 0; i <= 10; i++)
array1[i] = Int32.Parse(Console.ReadLine());
}
int[] array2 = new int[10];
for (i = 0; i < 10; i++)
array2[i] = array1[10 - i];
Console.WriteLine("reverse");
Console.WriteLine(array2[i]);