Problem2180--回文字符串

2180: 回文字符串

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

如果一个字符串从前往后与从后往前看是一样的,那么它是“回文字符串”。读入一个字符串,如果是“回文字符串”输出"YES",否则输出"NO"。


Input

一个字符串。

Output

"YES"或者"NO",双引号不用输出。

Sample Input Copy

ab22ba

Sample Output Copy

YES

Source/Category