sum method

int sum(
  1. int a,
  2. int b
)

Implementation

int sum(
  int a,
  int b,
) {
  return _sum(
    a,
    b,
  );
}