Between 8m and 8n there should be exactly 41 integers which can be expressed as powers of 2.
8m = 23m and 8n = 23n
Since we want the smallest possible value of m + n, so m and n values should be as minimum as possible.
let's take m = 1.
23m = 23, now after 23 from 24 to 244 so exactly a total of 41 integers came and after 244, 245 came.
so, 23n = 245
which makes 3n = 45 -> n = 15
so m + n = 1 + 15 = 16.
Option B is the correct answer.