#include #include using namespace std; int ans,ANS,f_ans; string s,S; int main() { std::cin >> s; int n = s.size(); for(int i = 0; i < n; i++){ for(int j = 1; i + j < n; j++){ S = s.substr(i,j); std::cout << S << std::endl; ANS = 0; for(int k = 0; k < j;k++){ if(S[k] == 'A') ANS++; else if(S[k] == 'B') ANS--; } std::cout << ANS << std::endl; if(ANS == 0) ans = std::max(ans,j); } } std::cout << ans << std::endl; }