using System;
public class Program
{
public static void Main()
Console.WriteLine("Въведи низ:");
string str = Console.ReadLine();
char[] charArray = str.ToCharArray();
Array.Reverse( charArray );
Console.WriteLine(new string( charArray ));
}