using System;
public class Program
{
public static void Main()
string Word = "Mom";
string Reverse = "";
for(int i=Word.Length-1;i>=0;i--)
Reverse = Reverse + Word.ToLower()[i];
}
if(Word.ToLower().Equals(Reverse))
Console.WriteLine(Word +" is a palindrome");
Console.WriteLine(Word +" is reversed to "+ Reverse);