10 lines
106 B
ObjectPascal
10 lines
106 B
ObjectPascal
|
|
var x: integer;
|
||
|
|
begin
|
||
|
|
x := 1;
|
||
|
|
while x<5 do
|
||
|
|
begin
|
||
|
|
write(x);
|
||
|
|
x += 2;
|
||
|
|
x += 3;
|
||
|
|
end;
|
||
|
|
end.
|