Problem1189--回文串

1189: 回文串

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

Description

给你一个字符串,判断是不是回文串。(回文串:正序倒序相同的字串)

Input

多组数据输入,每行输入一串字符。

Output

每组测试数据,如果是回文串输出YES,不是输出NO。

Sample Input Copy

abba
abcde

Sample Output Copy

YES
NO

Source/Category