0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 13:00:08 +00:00
OI-codes/Luogu/B2120/B2120.js

11 lines
208 B
JavaScript
Raw Normal View History

2022-06-01 09:45:41 +08:00
const fs = require('fs');
2021-07-15 15:05:48 +08:00
let str = fs.readFileSync(0).toString().replace(/\s+/g, ' ').split(' ');
2022-06-01 09:45:41 +08:00
let ans = [];
2021-07-15 15:05:48 +08:00
2022-06-01 09:45:41 +08:00
str.forEach((word) => {
2021-07-15 15:05:48 +08:00
ans.push(word.length);
});
process.stdout.write(ans.join(','));