#include <stdio.h>

int main() {
    char str[100];
   scanf("%s"&str);
   int length=strlen(str);
   printf("length of string:%s\n")

}