multiple method

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

Implementation

int multiple(int a, int b) => a * b;