// PascalABC.NET 3.0, сборка 1073
var
day,nwords:integer;
begin
day:=1; nwords:=4;
while nwords<50 do begin Inc(day); nwords:=nwords+4 end;<br> Writeln('50 слов будет выучено на ',day,'-й день')
end.
Тестовое решение:
50 слов будет выучено на 13-й день