Problem3492--判断字符串是否为回文

3492: 判断字符串是否为回文

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

Description

输入一个字符串,输出改字符串是否回文,回文是指顺序读和倒读都一样的字符串。

Input

输入一行字符串,长度小于100.

Output

如果字符串是回文,输出 yes 否则 no

Sample Input Copy

abcdedcba

Sample Output Copy

yes

Source/Category