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

theorem
  a <= 0 implies b <= b-a
proof
  assume a <= 0;
  then b+a <= 0+b by Lm6;
  hence thesis by Lm16;
end;
