Im trying to find the Laurent expansion of the function
$$f(z):=\frac{a-b}{(z-a)(z-b)},\quad\text{for }0<|a|<|b|$$
around $z=0$ in the annulus defined by $A:=\{z\in\Bbb C:|a|<|z|<|b|\}$. What I did by now is trying to write a function for the coefficients defined by
$$c_n=\frac1{2\pi i}\int_{r\partial\Bbb D}f(z)z^{-n-1}\, dz,\quad n\in\Bbb Z,\, r\in(|a|,|b|)$$
thus I write
f[z_] := (a - b)/((z - a) (z - b))
c[k_, f_] := Integrate[With[{z = r E^(I t)}, f[z]/(2 Pi z^k)], {t, 0, 2 Pi}]
However Im not sure how to set $r\in(|a|,|b|)$ in the above code. Of course setting values for $a$ and $b$ I can get an expansion, but Im interested in the symbolic expansion in terms of $a$ and $b$ with the restrictions said above, that is, that $0<|a|<|b|$.
I had read almost all topics related to Laurent series but I dont find something to obtain symbolic expressions of these kind.
Some help will be appreciated, thank you.