#24421: python 解答 AC


ianchen611@gmail.com (揚)

學校 : 國立臺北科技大學
編號 : 123857
來源 : [114.45.14.132]
最後登入時間 :
2024-10-14 20:20:50
a022. 迴文 | From: [118.167.60.138] | 發表日期 : 2021-02-16 21:22

#a022: 迴文 AC
x=input()
if x==x[::-1]:
    print("yes")
else:
    print("no")
 
ZeroJudge Forum