#45757: Python


wming0264@gmail.com (User)

School : No School
ID : 304439
IP address : [180.177.14.82]
Last Login :
2025-04-17 21:22:11
a022. 迴文 | From: [101.12.101.9] | Post Date : 2025-04-08 19:35

word = input()

same = True

for i in range(int(len(word) / 2)):

    if word[i] != word[-(i + 1)]:

        print("no")

        same = False

        break

if same != False:

        print("yes")

 
ZeroJudge Forum