#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); string s; cin >> s; int c = 0, w = 0; for(int i = 0; i < s.size(); i++){ if(s[i] == 'c') c++; else w++; } cout << min(c - 1, w) << endl; return 0; }