Home => ProblemSet => 1.7-33:判断字符串是否为回文
Problem1154--1.7-33:判断字符串是否为回文

1154: 1.7-33:判断字符串是否为回文

Time Limit: 1 Sec  Memory Limit: 128 MB  Submit: 0  Solved: 6
[ Submit ] [ Status ] [ Creator: ][ 参考程序 ]

Description

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

Input

输入为一行字符串(字符串中没有空白字符,字符串长度不超过100)。

Output

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

Sample Input Copy

abcdedcba

Sample Output Copy

yes

Source/Category