5 lines
79 B
Text
5 lines
79 B
Text
BEGIN
|
|
INTEGER I;
|
|
FOR I := 1 STEP 3 UNTIL 19 DO
|
|
WRITE( I );
|
|
END
|