const { Transform } = require('stream'); const sqrt = new Transform({ transform(chunk, encoding, callback) { this.push(Math.sqrt(chunk).toFixed(4)); callback(); }, }); process.stdin.pipe(sqrt).pipe(process.stdout);