program Ausgeben(output);

var i:integer;

begin
for i:=1 to 100 do
if i mod 2 = 0  then

writeln (i);
end.