static void Main(string[] args)
Console.WriteLine("Enter a String: ");
string str=Console.ReadLine();
char[] ch=str.ToCharArray();
string str1=string.Concat(ch);
Console.WriteLine("The original string is {0} and the reversed string is {1}",str,str1);
Console.WriteLine("The strings are palindrome");
Console.WriteLine("Sab kuch dhundla hai dhundla hai...");