// No.436 ccw // https://yukicoder.me/problems/no/436 // #include #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); string S; cin >> S; auto c_count = S.find("w"); auto w_count = S.size() - c_count; cout << min(c_count - 1, w_count) << endl; }