Do you not know how to do a cross product and a dot product?
With v= <2, 3, 1> and w= <3, 1, 2> the cross product, v x w, can be calculated as the determinant
$\left|\begin{array}{ccc}\vec{i} & \vec{j} & \vec{k} \\ 2 & 3 & 1 \\ 3 & 1 & 2 \end{array}\right|= \vec{i}\left|\begin{array}{cc}3 & 1 \\ 1 & 2\end{array}\right|- \vec{j}\left|\begin{array}{cc}2 & 1 \\ 3 & 2\end{array}\right|+ \vec{k}\left|\begin{array}{cc} 2 & 3 \\ 3 & 1 \end{array}\right|$
$= (6- 1)\vec{i}- (4- 3)\vec{j}+ (2- 9)\vec{k}= 5\vec{i}- \vec{j}- 7\vec{k}$
Now take the dot product of that with $u= \vec{i}+ 2\vec{j}+ 3\vec{k}$.