using System;
public class Program
{
public static void Main()
string word;
Console.WriteLine("Please enter a word:");
word = Console.ReadLine();
if (IsPalindrome(word))
Console.WriteLine("This is a Palindrome.");
else
Console.WriteLine("This is not a Palindrome.");
}
static bool IsPalindrome(string word)
return true;