theorem Th43:
  x <= y & z <= t implies x+z <= y+t
proof
  assume x <= y & z <= t;
  then x+z <= y+z & y+z <= y+t by Th32;
  hence thesis by SURREALO:4;
end;
