#include using namespace std; #pragma region template using i32 = int32_t;using i64 = int64_t;using u32 = uint32_t;using u64 = uint64_t;using f32 = float;using f64 = double;using f80 = long double; using vi32 = vector;using vi64 = vector;using vu32 = vector;using vu64 = vector; using vvi32 = vector>;using vvi64 = vector>;using vvu32 = vector>;using vvu64 = vector>; using pi32 = pair;using pi64 = pair;using Pu32 = pair;using Pu64 = pair; using vpi32 = vector;using vpi64 = vector;using vpu32 = vector;using vpu64 = vector; #define FOR(i,a,b) for(i64 i=(a), i##_len=(b); ii##_len; --i) #define REP(i,n) FOR(i,0,n) #define ALL(obj) (obj).begin(),(obj).end() #define CLR(ar,val) memset(ar, val, sizeof(ar)) #define SZ(obj) (static_cast(obj.size())) #define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end()); #define pb push_back #define mp make_pair #define fst first #define snd second #define PRINT(obj) std::cout<<((obj))< inline bool chmax(T &a, const T &b) { if (a inline bool chmin(T &a, const T &b) { if (b std::istream &operator>>(std::istream &is, std::pair &p) { is >> p.first >> p.second;return is; } template std::ostream &operator<<(std::ostream &os, const std::pair& p) { os << p.first << ' ' << p.second;return os; } template std::istream &operator>>(std::istream &is, std::vector &v) { for(T& in : v) is >> in; return is; } template std::ostream &operator<<(std::ostream &os, const std::vector &v) { for(i32 i = 0; i < SZ(v); i++) os << v[i] << (i+1 != SZ(v) ? " " : ""); return os; } void Main(); int main() { ios::sync_with_stdio(false); cin.tie(nullptr); std::cout << std::fixed << std::setprecision(10); std::cerr << std::fixed << std::setprecision(10); Main(); return 0; } #pragma endregion void Main(){ string s; cin >> s; int c_cnt = 0, w_cnt = 0; for (i64 i = 0; i < SZ(s); i++) { if (s[i] == 'c') c_cnt++; else w_cnt++; } cout << min(c_cnt - 1, w_cnt) << endl; }