Program Project9;
{$APPTYPE CONSOLE}{$R *.res}
uses System.SysUtils;
procedure Go;var i, N: Byte;Begin i := 0; Write('Введите N: '); Readln(N); if N < 3 then Exit; repeat inc(i, 3); Write(i, ' '); until (i >= N);End;
begin try { TODO -oUser -cConsole Main : Insert code here } Go; except on E: Exception do Writeln(E.ClassName, ': ', E.Message); end; Readln;
end.