sub function

int sub(
  1. int i,
  2. int j
)

Implementation

int sub(int i, int j) {
  return i - j;
}