Promi_38

cf 1455A

Dec 21st, 2020
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<string.h>
  3.  
  4. int main()
  5. {
  6.     int t;
  7.     scanf("%d", &t);
  8.    
  9.     while(t--)
  10.     {
  11.         char s[1000];
  12.         scanf("%s", s);
  13.         printf("%d\n", strlen(s));
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment