#include <stdio.h>

int main() {
    char str[20],i;
    scanf("%[^\n]s",str);
    printf("%s",str);
    printf("%d",sizeof(str));
    return 0;
}