using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
String str = "asdsA";
int min = 0;
int max = str.Length-1;
int is_paland = 1;
while(min <= max)
if (str[min].ToString().ToLower() != str[max].ToString().ToLower())
is_paland = 0;
}
min = min + 1 ;
max = max -1;
if (is_paland == 1)
Console.WriteLine("Palendrome = " + str);
else
Console.WriteLine("Not Palendrome = " + str );