시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB18713811771.779%

문제

A palindrome is a word, phrase, number or other sequence of characters which reads the same backwards or forwards. Given a string of lower case letters, can you make it a palindrome by deleting exactly one character? Note that the size of the string after deletion would be one less than it was before. 

입력

Up to 30 lines each containing from 3 to 30 lower case letters. The final line will just contain # - do not process this line.

출력

If it is possible to make a palindrome from the text by deleting one letter, display the palindrome text. If it is not possible, display not possible.

It may be possible to make more than one palindrome by deleting a single letter. For example, madmam will become mamam if the d is deleted, or madam if the middle m is deleted. In such a case, display the palindrome formed by deleting the earliest letter from the text.

예제 입력 1

radars
rayon
madmam
#

예제 출력 1

radar
not possible
mamam