1 задание free pascal
Program Random uses crt; var num: integer; begin clrscr; randomize; num:= random(4) * 100; writeln(num); end.