#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); string s; cin >> s; int ans = 100000; int n = s.size(); for(int i = 0; i < n; i++) { if(s[i] == 'c') { int w = 0; for(int j = i + 1; j < n; j++) { if(s[j] == 'w') w++; if(w == 2) { ans = min(ans, j - i + 1); break; } } } } if(ans == 100000) cout << -1 << endl; else cout << ans << endl; return 0; }