str=input()a=len(str)for i in range(a//2): if str[i]!=str[a-i-1]: print("no") breakelse: print("yes")