Skip to content
Snippets Groups Projects
5.py 67 B
s = input()
if s == s[::-1]:
    print("YES")
else:
    print("NO")