reserve a,b,c,d for Real;
reserve r,s for Real;

theorem
  a < 0 & b <= c implies b < c-a
proof
  assume that
A1: a < 0 and
A2: b <= c;
  a+b < c by A1,A2,Th37;
  hence thesis by Lm19;
end;
