0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:25:24 +00:00
OI-codes/Luogu/B2120/B2120.js

11 lines
204 B
JavaScript
Raw Normal View History

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