reserve x,y,z,w for ExtReal,
  r for Real;
reserve f,g for ExtReal;
reserve t for ExtReal;

theorem
  0 <= x & z + x <= y implies z <= y
proof
  assume 0 <= x;
  then z <= z + x by Th39;
  hence thesis by XXREAL_0:2;
end;
