public static void Main()
int [] array1 = {2, 1, 2, 1, 5, 0, 10};
for (i=0; i<array1.Length;i++)
Console.WriteLine(array1[i]);
Console.Write("Enter a word: ");
input = Console.ReadLine();
for (int a = input.Length - 1; a >= 0; a--)
reverse = reverse + input[a];
Console.WriteLine("Reverse String Is {0}", reverse);
Console.WriteLine("Yes, this is a palindrome");