using System;
public class Program
{
private static bool isPolyndrome(string number)
// Your code here
return true;
}
public static void Main()
Console.WriteLine(isPolyndrome("111111"));
Console.WriteLine(isPolyndrome("123456"));
Console.WriteLine(isPolyndrome("123321"));