#39207: python 簡易方法 回文倒過來長的還是一樣


uanjhu0518@gmail.com (Eric王淵筑)


a=input()
if a==a[::-1]:
 print('yes')
else:
 print('no')