Skip to content
Snippets Groups Projects
7.py 67 B
Newer Older
hacker717's avatar
hacker717 committed
s = input()
if s == s[::-1]:
    print("YES")
else:
    print("NO")