Var x,y: integer; begin x:= -10+random(20); if x>0 then y:=x+1 else if x<0 then y:=x-2 else y:=10;<br> writeln('Число ',x,' результат ',y); end.