addIntegers static method

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

Adds two integers and returns the result.

Implementation

static int addIntegers(int a, int b) {
  return a + b;
}