#include #include int main(){ std::ios::sync_with_stdio(false); std::cin.tie(0); int cnt=0, max=-1; char c; std::string multiChar; while(1){ multiChar.clear(); for(int i=0; i<3; ++i){ std::cin.get(c); multiChar.push_back(c); if(c=='\n') break; } if(multiChar=="…") ++cnt; else{ max = (max < cnt) ? cnt : max; cnt=0; } if(multiChar=="\n") break; } std::cout << max << "\n"; return 0; }