def divide(num, denom): """Divide two integers, returning both the quotient and the remainder. """ q = num // denom r = num % denom return (q, r)