#回文数num = int(input())a = num % 10b = num // 10000if a != b: print("no")else: print("yes")#输入12321 运行结果为yes