#include <iostream>
using namespace std;

int main() {

    char str[100] = { 0 };
    cin.getline(str, sizeof(str));

    // write your code here......
    char *p=str;
    int res=0;
    while(*p)
    {
        res++;
        p++;
    }
    cout<<res;
    return 0;
}