const readline = require("readline"); const rl = readline.createInterface({ input: process.stdin, output: process.stdout, }); rl.on("line", function (line) { const ng = 'NG'; const ok = 'OK'; let sign = ok; // 长度 if (line.length < 9) { sign = ng; } else { let countType = 0; if...