using namespace std;
int main() { while (true) { string s; cin >> s; if (s.empty()) break;
cout << s.size() << ' '; } return 0;
}