level
YES
def is_palindrome(s): if s == s[::-1]: return 'YES' return 'NO' s = input().strip() print(is_palindrome(s))