add function

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

Implementation

int add(int i, int j) {
  return i + j;
}