const readline = require("readline"); const rl = readline.createInterface({ input: process.stdin, output: process.stdout, }); rl.on("line", function (line) { const n = Number(line); const ans = []; let item = -1; // 遍历到的奇数 从-1开始 是为了第1行 // 可以理解为 第n行有n个奇数相加,第1行1个奇数、第2行两个奇数、第3行3个奇数....