#38957: python


zerovbulitania@gmail.com (whitez)

學校 : 國立高雄師範大學
編號 : 247652
來源 : [36.238.171.199]
最後登入時間 :
2024-02-19 15:46:12
a022. 迴文 | From: [218.166.8.121] | 發表日期 : 2024-01-07 00:19

x = input()
if len(x) % 2 == 0:
    x,y = x[0:len(x)//2],x[:(len(x)//2)-1:-1]
if len(x) % 2 == 1:
    x,y = x[0:len(x)//2],x[:(len(x)//2):-1]

if x == y:
    print('yes')
else:
    print('no')    

 
ZeroJudge Forum