using System;
public class Program
{
public static void Main()
int[] tmp = new int[10];
for (int i = 0; i < tmp.Length; i++)
tmp[i] = int.Parse(Console.ReadLine());
}
Console.WriteLine("==============");
for (int i = tmp.Length-1; i >= 0; i--)
Console.WriteLine(tmp[i]);