s=input() t_c=s.count("c") t_w=s.count("w") if t_c==t_w or t_c < t_w: print(t_c-1) else: print(t_w)