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