mod function

int mod(
  1. int a,
  2. int m
)

Implementation

int mod(int a, int m) => ((a % m) + m) % m;