#include #define REP(i,n) for(int i=0; i<(n); i++) #define REP2(i,x,n) for(int i=x; i<(n); i++) using namespace std; struct CWW{CWW(){ios::sync_with_stdio(false);cin.tie(0);}}cww; int main() { string S; cin >> S; int res{}; REP( i, (int)S.size() ) { REP2( j, i + 1, (int)S.size() + 1 ) { string str; str = S.substr( i, j ); string tmp = str; reverse( tmp.begin(), tmp.end() ); if( str == tmp ) { res = max( res, (int)str.size() ); break; } } } cout << res << endl; return 0; }