s=raw_input() w=s.count("w") t=0 for c in s: if c=="c": t+=w*(w-1)/2 elif c=="w": w-=1 print t