#20518: python 為什麼錯??? 一直說讀到EOF


youngyoung (06 蘇昱揚 306)


while True:
word = input()
isPalindrome = True
for i in range(0, len(word)):
if word[i] != word [-i-1]:
isPalindrome = False
break
print("yes") if isPalindrome == True else print("no")