Skip to content
Snippets Groups Projects
17.py 93 B
Newer Older
hacker717's avatar
hacker717 committed
s = input().lower().replace(" ", "")

if s == s[::-1]:
    print("YES")
else:
    print("NO")