#include #include using namespace std; int main(){ unsigned char s[800]; scanf("%s",s); int i=0,cnt=0,max=0; while(s[i]!=0){ if(s[i]==226 && s[i+1]==128 && s[i+2]==166){ cnt++; max=(max>cnt?max:cnt); i+=3; }else{ cnt=0; i++; } } cout << max << endl; return 0; }