문제

링크

풀이

#include <stdio.h>
#include <string.h>
 
int main(void) {
  char word[100];
 
  scanf("%s", word);
  printf("%d", strlen(word));
  return 0;
}