#include <stdio.h>
#include <string.h>
#include <strings.h>
int main(){
char buf[100];
bzero(buf, 100);
fgets(buf, 100, stdin);
printf("%d", strlen(buf));
}
#include <stdio.h>
#include <string.h>
#include <strings.h>
int main(){
char buf[100];
bzero(buf, 100);
fgets(buf, 100, stdin);
printf("%d", strlen(buf));
}