function TwoListsSum(m, n) {
  for (let i = 0; i < m.length; i++) { // Loop array 執行 m 次
    for (let j = 0; j < n.length; j++) { // Loop array 執行 n 次
      console.log(m[i] * n[j]); // 執行 loop i 的 m 次 * loop j 的 n 次 = m*n 次
    }
  }
}