14678 - Is it palindrome?   

Description

Palindrome is a word, phrase, or sequence that reads the same backwards as forwards.

Write a simple code to check if the input string s is a palindrome

Input

Input string S

1 <= len(S) <= 1000

Output

Output Yes if its a palindrome and No if its not

Sample Input  Download

Sample Output  Download




Discuss