#include <iostream>
#include <sstream>
using namespace std;
int main() {
string S;
getline(cin, S);
stringstream ss(S);
string word;
string result = "";
while (ss >> word) {
result += to_string(word.length());
}
cout << result << endl;
return 0;
}
Deloitte
โ