divide function

double divide(
  1. int a,
  2. int b
)

Implementation

double divide(int a, int b) {
  return a / b;
}