using System; public static class Program { static void Main(string[] args) { var str = Console.ReadLine(); for (int i=0; i < str.Length; i++) { if (str[i] == 'c') { for (int j= i + 1; j < str.Length; j++) { if (str[j] == 'w') { for (int k = j + 1; k < str.Length; k++) { if (str[k] == 'w') { int len = (k - i) + 1; Console.WriteLine(len); return; } } } } } } Console.WriteLine(-1); } } // class Program