0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:05:25 +00:00
OI-codes/Luogu/B2120/B2120.cpp

18 lines
282 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
bool flag = true;
while (cin >> s) {
if (flag) {
flag = false;
cout << s.size();
} else {
cout << ',' << s.size();
}
}
return 0;
}