var i,n:integer;
begin
writeln('vvedite chisla');
readln(n);
for i:=1 to n do
if i mod 2=0
then writeln(i);
end

Комментарии