mul function

int mul (
  1. int a,
  2. int b
)

multiply a and b

Implementation

int mul(int a, int b) {
  return a * b;
}