A palindrome is a number or a text phrase that reads the same backwards as forwards. For example, each of the following five-digit integers are palindomres: 12321, 5555. 45554 and 11611. Write a program that reads in a five-digit integer and determines whether or not it is a palindrome. (Hint: Use the division and modulus operators to separate the number into individual digits.)