На Паскале:
var x,y,z:real;
begin
x:=5;
y:=-6;
if x>y then
z:=x+y
else
z:=y-x;
writeln('z = ',z);
end.