Assignment
Write a C++ program to test palindromes - A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward as forward.
You should read input as a string and call a function to test if it is a palindrome. The function should return true if it was a palindrome false otherwise.
The program should end when the user enters STOP.
Your program should prompt the user with appropriate messages.