Ответ:
ABDEF = 17
Объяснение:
ABDEF = 5 + 3 + 2 + 7 = 17
ABCEF = 5 + 9 + 4 + 7 = 25
ABEF = 5 + 8 + 7 = 20
650 ПЕРЕВЕСТИ В КБ И ДЕЛИТЬ НА 3072
650x1024=665600
665600/3072=216,6сек
216,6/60=3,61мин
все эти "предметы" использует человек, сидя.
Var
input, output: text;
x,k: integer;
begin
assign(input,'input.txt');
assign(output,'output.txt');
reset(input);
rewrite(output);
k := 0;
read(input, x);
while x <> 0 do
begin
k := k + 1;
read(input, x)
end;
write(output, k);
close(input);
close(output)
end.