program xxx; var i, s : integer; begin s:=0; i:=2; while i<=40 do begin s:=s+i; i:=i+2 end; write('сумма четных чисел =', s); readln end.