Limak? Kamil = null;


liczba pkt:
liczba pkt od innych uzytkownikow:
liczba zaakceptowanych prac: 0
1 212 Pascal Limak? Kamil = null; 2018-11-22 12:15:11 not approved
                    var s:string;
    len:Longint;
begin
  Randomize;
  s:='';
  for len:=Random(249)+8 downto 0 do
      s:=s+chr(Random(94)+33);
  writeln(s);
end.
click to show comments
4 1208 Python Limak? Kamil = null; 2018-11-21 20:14:17 not approved
                    from random import randrange as r
print(''.join([chr(r(93)+33) for i in range(r(248)+8)]))
click to show comments