modMul function

int modMul(
  1. int a,
  2. int b,
  3. int m
)

Implementation

int modMul(int a, int b, int m) => mod(a * b, m);