PROGRAMMING:Palindrome tester
A palindrome is a number or a text phrase that reads the same backward
as forward. For example, each of the following five-digit integers is a palindrome: 12321,
55555, 45554 and 11611. Write a program that reads in a five-digit integer and determines whether
or not it’s a palindrome. [Hint: Use the division and remainder operators to separate the number
into its individual digits.]
### Input Specification:
one 5-digit-integer.
### Output Specification:
(the value of the number) is (/is not) a Palindrome number!
### Sample Input 1:
```in
twelve thousand three hundred and twenty-one
```
### Sample Output 1:
```out
12321 is a Palindrome number!
```
### Sample Input 2:
```in
twelve thousand three hundred and forty-five
```
### Sample Output 2:
```out
12345 is not a Palindrome number!
```
answer:If there is no answer, please comment
as forward. For example, each of the following five-digit integers is a palindrome: 12321,
55555, 45554 and 11611. Write a program that reads in a five-digit integer and determines whether
or not it’s a palindrome. [Hint: Use the division and remainder operators to separate the number
into its individual digits.]
### Input Specification:
one 5-digit-integer.
### Output Specification:
(the value of the number) is (/is not) a Palindrome number!
### Sample Input 1:
```in
twelve thousand three hundred and twenty-one
```
### Sample Output 1:
```out
12321 is a Palindrome number!
```
### Sample Input 2:
```in
twelve thousand three hundred and forty-five
```
### Sample Output 2:
```out
12345 is not a Palindrome number!
```
answer:If there is no answer, please comment