PROGRAMMING:Judge palindrome
Enter a character string with carriage return as the end flag (less than 80 characters) to determine whether the string is palindrome.
Palindrome is string centrosymmetry, such as "abcba", "abccba" is palindrome, "abcdba" is not palindrome.
###Input format:
Enter a string (less than 80 characters) that ends with a carriage return
###Output format:
For palindrome, output yes; Non palindrome, output no, pay attention to the output results followed by carriage return
###Input example:
```in
abccba
```
###Output example:
```out
yes
```
answer:If there is no answer, please comment
Palindrome is string centrosymmetry, such as "abcba", "abccba" is palindrome, "abcdba" is not palindrome.
###Input format:
Enter a string (less than 80 characters) that ends with a carriage return
###Output format:
For palindrome, output yes; Non palindrome, output no, pay attention to the output results followed by carriage return
###Input example:
```in
abccba
```
###Output example:
```out
yes
```
answer:If there is no answer, please comment