2 #include "dictionary.h"
17 while (getline(cin
,str
)) {
18 if (++count
% 200 == 0) cerr
<< count
<< endl
;
19 vector
<string
> output
;
20 sentences_split(str
,output
);
21 copy(output
.begin(),output
.end(),ostream_iterator
<string
>(cout
,"\n"));