using System.Collections.Generic;
Stack<int> main = new Stack<int>();
Stack<int> track = new Stack<int>();
public static void Main()
Console.WriteLine("Hello World");
var inputString = Console.ReadLine();
bool output = IsPalindrome(inputString);
Console.WriteLine(output);
public static bool IsPalindrome(string value)
int max = value.Length - 1;
if (char.ToLower(a) != char.ToLower(b))