const gcdCount = (num1, num2) => {
  let min = 0;
  let max = 0;
  let result = 0;
  if (num1 < num2) {