Var i,sum:integer; begin sum:=0; for i:=1 to 100 do if (i mod 2<>0) then sum:=sum+i; write(sum); end.