using System;
public class Program
{
public static void Main()
Console.WriteLine("Въведи низ!");
string text = Console.ReadLine();
string s = Console.ReadLine();
s = "";
int i;
for ( i = text.Length - 1; i >= 0; i--)
s = s + text[i];
Console.WriteLine(s);
bool palindrome = true;
int n = s.Length;
for ( i = 0; i < n; i++)
if(s[i] != s[n - 1 - i])
palindrome = false;
}
if(palindrome == true)
Console.WriteLine(s + " Палиндром е ");
else
Console.WriteLine(s + " Не е палиндром ");