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

문제

A palindrome is a word which is the same when read forwards as it is when read backwards. For example, mom and anna are two palindromes.

A word which has just one letter, such as a, is also a palindrome.

Given a word, what is the longest palindrome that is contained in the word? That is, what is the longest palindrome that we can obtain, if we are allowed to delete characters from the beginning and/or the end of the string?

입력

The input will consist of one line, containing a sequence of at least 1 and at most 40 lowercase letters.

출력

Output the total number of letters of the longest palindrome contained in the input word.

예제 입력 1

banana

예제 출력 1

5

예제 입력 2

abracadabra

예제 출력 2

3

예제 입력 3

abba

예제 출력 3

4