multiplyBy100 method

int multiplyBy100(
  1. int amount
)

Implementation

int multiplyBy100(int amount) {
  return amount * 100;
}