import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; class No345 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine(); int C =str.indexOf("c"); //cの位置 int W1 = str.indexOf("w",C+1); //1つ目のwの位置 int W2 = str.indexOf("w",W1+1); //2つ目のwの位置 if (C !=-1 && W1 !=-1 && W2 != -1 && //cww全てが含まれ、且つCが一番小さい時 C == Calc.min(C, W1,W2)){ System.out.println( (W2 - C) + 1 ); } else System.out.println(-1); } public static class Calc { //3つの数字の中で最小の物を返すメソッド(xだけ) public static int min(int x, int y, int z){ if (x < y && x < z) return x; else return 0; } } }