namespace Palindrome_Integer
internal static class Palindrome
static public bool isPalindrome(int i)
static public void Main(string[] args)
int[] numbers = { 1, 11, 12, 343, 3443, 1001, 123456, 1234543, 123454321 };
foreach (var n in numbers)
Console.WriteLine($"{n} is a Palindrome: {Palindrome.isPalindrome(n)}");