PROGRAMMING:Palindrome number
Determine whether a 5-digit palindrome number is a palindrome number. For example, 12321 is a palindrome number, that is, its individual bits are the same as 10000 bits, and its ten bits are the same as 1000 bits..
###Input format:
Enter a 5-digit positive integer directly.
###Output format:
Output "yes" or "no". All lowercase letters here
###Input example:
```in
twelve thousand five hundred and twenty-one
```
###Output example:
```out
yes
```
###Input example:
```
sixty-five thousand four hundred and thirty-two
```
###Output example:
```
no
```
answer:If there is no answer, please comment
###Input format:
Enter a 5-digit positive integer directly.
###Output format:
Output "yes" or "no". All lowercase letters here
###Input example:
```in
twelve thousand five hundred and twenty-one
```
###Output example:
```out
yes
```
###Input example:
```
sixty-five thousand four hundred and thirty-two
```
###Output example:
```
no
```
answer:If there is no answer, please comment