using System;
public class Program
{
public static void Main()
string s,revs="";
Console.WriteLine("Enter the string to check weather palindrome or not : ");
s = Console.ReadLine();
for (int i = s.Length-1; i >=0; i--) //String Reverse
revs += s[i].ToString();
}
if (revs == s) // Checking whether string is palindrome or not
Console.WriteLine("Indeed");
else
Console.WriteLine("Not at All");