1455A codeforces solution in cpp
by ujjal roy
#include<bits/stdc++.h>
using namespace std;
main()
{
int t;
string s;
cin>>t;
while(t--)
{
cin>>s;
cout<<s.size()<<endl;
}
return 0;
}
1455A codeforces solution in cpp
by ujjal roy
#include<bits/stdc++.h>
using namespace std;
main()
{
int t;
string s;
cin>>t;
while(t--)
{
cin>>s;
cout<<s.size()<<endl;
}
return 0;
}
0 Comments