#include <bits/stdc++.h>
using namespace std;


int pd(string s){
    for(int i=0,j=s.size()-1;i<=j;++i,--j){
        if(s[i]!=s[j]) return 0;
    }
    return 1;
}

int main(){
    string m;
    
    while(cin>>m){
        for(int i=m.size();i>0;--i){
            for(int j=0;j<m.size()-i+1;++j){
                if(pd(m.substr(j,i))) {
                    cout<<i<<endl;
                    return 0;
                }
            }
        }
    }
    return 0;
}