dividir method

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

Implementation

int dividir(int a, int b) {
  return a ~/ b;
}