Declare NUM1 number:=0; begin loop NUM1 := NUM1+2; dbms_output.put_line (NUM1||','); exit when NUM1=100; end loop; end;