#P410. 练70.2 判断字符串是否为回文
练70.2 判断字符串是否为回文
Description
Input a string and determine if it is a palindrome. A palindrome is a string that reads the same forward and backward.
Input Format
Input is one line of string (the string contains no whitespace characters and has length not exceeding ).
Output Format
If the string is a palindrome, output ""; otherwise, output "".
Sample
abcdedcbayes
Related
In following homework: