|  | 
|  | 
| back to board | Empty lines problem Posted by Agh  13 Dec 2002 21:41I get AC but not easy and as i understand the main problem forpeople with this task is input.
 
 Here is my input code. Hope it'll be usefull
 ------------
 <read vocabulary>
 
 while not eof do
 begin
 readln(s);
 if (s = '') and eof then break;
 
 <process string>
 writeln;
 end;
 
 writeln(errorsCnt);
 ------------
 | 
 | 
|