#include<iostream>
using namespace std;
int main(){
    string str;
    while(cin >> str){
    }
    cout << str.size();
    return 0;
}