public static void Main()
Console.WriteLine("Palindrome check in C#\n");
Console.WriteLine("Enter a String to check for Palindrome");
string input = Console.ReadLine();
int iLength = input.Length;
Console.WriteLine("You did not enter the string");
for (int j = iLength - 1; j >= 0; j--)
initial = initial + input[j];
Console.WriteLine(input + " is palindrome");
Console.WriteLine(input + " is not a palindrome");