modAdd function

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

Implementation

int modAdd(int a, int b, int m) => mod(a + b, m);