#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 100100).

Output Format

If the string is a palindrome, output "yesyes"; otherwise, output "nono".

Sample

abcdedcba
yes