import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String S = sc.next(); int n = 0; boolean c = false, w1 = false, w2 = false; for(String s : S.split("")) { if (c) n++; if (s.equals("c") && !c && !w1 && !w2) { c = true; n++; } if (s.equals("w") && c && !w1 && !w2) { w1 = true; } else if (s.equals("w") && c && w1 && !w2) { w2 = true; break; } } if (c && w1 && w2) { System.out.println(n); } else { System.out.println("-1"); } } }