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

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