Codewars se multiplier

public class CustomMath
{
    public static int multiply(int a, int b) {
        return a * b;
    }
}
Michael Futral