#include <stdio.h>

int main() {
    char a[10];
    scanf("%s",a);
    int length=strlen(a);
    printf("length of string:%d\n",length);

}