Q

백준 2743

백준 2743번 문제


C code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <string.h>

int main(void)
{
char s[101] = "";
int i = 0;

if(scanf("%s", s) > 100)
return 0;

printf("%ld", strlen(s));

return 0;
}