using System;
public class Program
{
public static void Main()
//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
int[] array1 = new int[10];
int i;
for (i = 0; i < 10; i++)
array1[i] = Int32.Parse(Console.ReadLine());
}
int[] array2 = new int[10];
array2[i] = array1[9 - i];
Console.WriteLine(array2[i]);