add 1920.py & complete 1259.py

This commit is contained in:
yenru0
2021-02-13 19:46:00 +09:00
parent 129a734bf9
commit f4f2dfd1f6
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
t = input()
while t != "0":
t_r = int(t[::-1])
t_i = int(t)
if t_r == t_i:
print("yes")
else:
print("no")
t = input()