s = gets.chomp ans = 1000 while s != '' if s =~ /c.*?w.*?w/ ans = [ans,$&.length].min end s = $'.to_s end if ans == 1000 p -1 else p ans end