您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  1. #!/usr/bin/env node
  2. var prefix = require("./index.js");
  3. var str = "";
  4. process.stdin.on("data", function(data) {
  5. str += data;
  6. });
  7. process.stdin.on("end", function() {
  8. console.log(prefix(str));
  9. });