#24421: python 解答 AC


ianchen611@gmail.com (揚)


#a022: 迴文 AC
x=input()
if x==x[::-1]:
    print("yes")
else:
    print("no")