This looks like a homework exercise on mixed strategy Nash equilibria.
My ASCII art skills are a little rusty, but let's write up a "nice" litte 2x2x2 cube:
+--------------+-----------------+
C plays 3 / / / |
+--------------+----------------+ |
C plays 2 / / /| /
+---------------+---------------+ | /|
B plays 3 | (3/2,3/2,2) | (1,3,1) | |/ /
+---------------+---------------+-/ /
B plays 2 | (3,1,1) | (2/3,2/3,2/3) | |/
+---------------+---------------+-/
A plays 3 A plays 2
Yes I know it's ugly as sin. Just sketch it on a piece of paper instead and fill it out with the payoffs. And leave a spot somewhere for the (A:3,B:2,C:3) corner.
Now let $p_X$ denote the propability that player $X$ plays $3$ and let $U_{X,y}$ denote the expeted payoff for player $X$ playing $y$
Because of the symmetries in this game, in a mixed strategy equilibrium $A$, $B$ and $C$ will all play the same mixed strategy, i.e. $p_A = p_B = p_C$.
$$
U_{C,3} = p_Ap_B\cdot 1 + p_A(1-p_B)\cdot\tfrac{3}{2} + (1-p_A)p_B\cdot\tfrac{3}{2} +
(1-p_A)(1-p_B)\cdot 3 $$
$$ = p_A^2 + \tfrac{3}{2}p_A - \tfrac{3}{2}p_A^2 + \tfrac{3}{2}p_A - \tfrac{3}{2}p_A^2 + 3
-6p_A + 3p_A^2 = p_A^2 -3p_A + 3$$
$$
U_{C,2} = p_Ap_B \cdot 2 + p_A(1-p_B)\cdot 1 + (1-p_A)p_B\cdot 1 + (1-p_A)(1-p_B)\tfrac{2}{3} $$
$$ = \tfrac{2}{3}p_A^2 + \tfrac{2}{3}p_A + \tfrac{2}{3}$$
Then we just solve $U_{C,3} = U_{C,2}$ for $p_A$ and we get $\tfrac{1}{3}p_A^2 - \tfrac{11}{3}p_A + \tfrac{7}{3} = 0$ which has solutions $p_A = \frac{11 \pm \sqrt{93}}{2}$. Only the root corresponding to minus gives $p_A \in [0,1]$, so we conclude that the players should play $3$ with a probability of approximately $0.678$.
PS: I've given up on align. It just doesn't work. Ever.
PPS: There's almost certainly a mistake. This was a pretty quick and dirty computation.