#include <stdio.h>
#include<string.h>
int main() {
    char S[20];
    while (scanf("%s", &S) != EOF) { // 注意 while 处理多个 case
        // 64 位输出请用 printf("%lld") to 
        int n=strlen(S);
        if(S[n-1]=='.')n--;
        printf("%d ",n);
    }
    return 0;
}