Instead of giving you the final answer, I ask you simplify question by an example you can solve on paper. Let's ask in how many ways it is possible to distribute 4 cards (A,B,C,D) between two people equally. We can write possible ways as follows:
$|\{(AB, CD), (AC,BD),(AD,BC),(BC,AD),(BD,AC),(CD,AB)\}| = 6$
In the same way in math, I should multiply the ways I can select first 2 cards from 4 cards for the first person, $\binom{4}{2}$, and the remaining 2 cards for the second person $\binom{4-2}{2} = \binom{2}{2}$. Therefore, $\binom{4}{2} \times \binom{2}{2} = 6$ ways are available.
Now, can you solve the main problem?