theorem Th35:
  a <= 0 & c <= b implies c+a <= b
proof
  assume a <= 0 & c <= b;
  then a+c <= 0+b by Lm6;
  hence thesis;
end;
