// Description
Determine whether the given lowercase string is a palindrome.
// Input
A single line containing a string of lowercase letters (length <= 1000).
// Output
Print "YES" if the string is a palindrome, otherwise "NO".
// Hint
Compare the string with its reverse.