using System;
public class Program
{
public static void Main()
string a, b, c, d;
Console.Write("Enter letter: ");
a = Console.ReadLine();
b = Console.ReadLine();
c = Console.ReadLine();
d = Console.ReadLine();
Console.WriteLine("Reverse order - {0} {1} {2} {3}", d, c, b, a);
}