multiply function

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

Implementation

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