#include<iostream> #include<stack> #include<string> using namespace std; int main() { string str; while(getline(cin,str)){ stack<char> s; for(char c:str){ if(!s.empty() &&s.top()=='(' && c==')') { s.pop();continue; } s.push(c); } int cut=0; for(int i=0;i<s.size();++i){ if(s.top()!='B')cut++; else break; s.pop(); } cout<<cut<<endl; } return 0; }