4 lines
91 B
Python
4 lines
91 B
Python
while True :
|
|
s = input()
|
|
if s=='0' : break
|
|
print("yes" if s==s[::-1] else "no") |