#include<iostream> #include<cstring> using namespace std; char word[101]; int main(){ cin.getline(word,101); cout<<strlen(word); return 0; }