"Write a program in MIPS assembly language which reads two integers a, b,
calculates a^3 + 3ab^2 + 3a^2b + b^3 and outputs the result."
My question is, how do I calculate powers of things in MIPS? Also I think I probably need to simplify that equation first...does anyone know how I should begin?