问题2266--Palindrome Problem El Borpem Ord Nilap

2266: Palindrome Problem El Borpem Ord Nilap

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

A palindrome is a word or phrase which is spelled the same backwards and forwards (ignoring any punctuation and whitespace). Some famous palindromes include Madam, I’m Adam. A man, a plan, a canal: Panama! Go hang a salami, I’m a lasagna hog. For this problem, you will read in a string of text and determine whether or not it is a palindrome.

输入

There will be multiple input sets. Each set will consist of one line of text of no more than 80 characters. The last line of the file will contain the sentence THE END. and should not be processed

输出

For each input set, output either the word Yes or the word No depending on whether the input string is a palindrome or not.

样例输入 Copy

<pre>
Go hang a salami, I’m a lasagna hog.
East Central Regional Programming Contest
     Dennis            sinned
THE END.
</pre>

样例输出 Copy

Yes
No
Yes

来源/分类