Pagini recente » Cod sursa (job #209084) | Cod sursa (job #2488794) | Cod sursa (job #2138636) | Cod sursa (job #2292671) | Cod sursa (job #285526)
Cod sursa(job #285526)
const litere=['a'..'z','A'..'Z'];
var c:char;
k,con,s:integer;
begin
k:=0;
con:=0;
s:=0;
assign(input,'text.in'); reset(input);
assign(output,'text.out'); rewrite(output);
while not eof do begin
read(c);
if c in litere then inc(con)
else begin s:=s+con; if con>0 then inc(k); con:=0; end;
end;
write(s div k);
readln;
close(input); close(output);
end.