If you really want to compute 2 bits cubed, then you are trying to compute:
$$\begin{align}
bXY^3 &= bA\,BCDE \\ \hline
b00^3 &= b0\,0000 \\
b01^3 &= b0\,0001 \\
b10^3 &= b0\,0100 \\
b11^3 &= b1\,1011 \\
\end{align}$$
A half adder lets you compute a carry bit and a sum bit:
$$\text{CarryOut} = \text{Maj2}(A,B,\text{CarryIn})$$
$$\text{sum} = A \text{ xor } B \text{ xor } \text{CarryIn}$$
So using the above two functions, you want to create the above table. I'll use $\bot$ for zero or ground.
$$\begin{align}
E &= Y \\
D &= \text{Maj2}(X, Y, \bot) \\
C &= \text{Maj2}(X,Y,\bot) \text{ xor } X \text{ xor } \bot \\
B &= \text{Maj2}(X,Y,\bot) \\
A &= \text{Maj2}(X,Y,\bot)
\end{align}$$
That's two half adders and some wiring. Good luck.