<p>Given an integer <code>num</code>, find the closest two integers in absolute difference whose product equals <code>num + 1</code> or <code>num + 2</code>.</p>
<strong>Explanation:</strong> For num + 1 = 9, the closest divisors are 3 & 3, for num + 2 = 10, the closest divisors are 2 & 5, hence 3 & 3 is chosen.