Var x, y, i: integer; begin randomize; readln (y); for i:=1 to y do begin x:=random(1000); write (x, ' '); end; readln; end.