#
# 
# @param x int整型 
# @return bool布尔型
#
class Solution:
    def isPalindrome(self , x ):
        # write code here
        x=str(x)
        y=x[::-1];
        if x!=y:
            return False
        return True