theorem
  m <= i & i <= m+k implies i = m+0 or ... or i = m+k
proof assume that
A1: m <= i and
A2: i <= m+k;
  take j = i;
  thus thesis by A1,A2;
end;
