PROGRAMMING:Determine whether a 5-bit integer is palindrome
Palindrome number refers to the number of correct reading and reverse reading are the same. For example, 12321, 55455, 35553 are palindromic numbers. Please write a program to read a long integer containing 5 digits from the keyboard and judge whether it is palindrome.
###Input format:
Enter an integer.
###Output format:
First output the input data, and then output whether it is palindrome. If palindrome output "yes", otherwise output "no", separated by a space.
###Input example:
```in
twelve thousand three hundred and twenty-one
```
###Output example:
```out
12321 yes
```
answer:If there is no answer, please comment
###Input format:
Enter an integer.
###Output format:
First output the input data, and then output whether it is palindrome. If palindrome output "yes", otherwise output "no", separated by a space.
###Input example:
```in
twelve thousand three hundred and twenty-one
```
###Output example:
```out
12321 yes
```
answer:If there is no answer, please comment