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

theorem
  a-b <= c implies a-c <= b
proof
  assume c >= a-b;
  then c+b >= a by Lm19;
  hence thesis by Lm18;
end;
