public int Exponent(int a, int b) { // ??? } [TestMethod] public void Exponent Test() { Assert. AreEqual (Exponent(3, 2), 9); } Fill in the "Exponent" function above so that it passes the "ExponentTest" unit test. Assume the appropriate scaffolding is put in place. Use the least number of characters possible.