restar method

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

Implementation

int restar(int a, int b) {
  return a - b;
}