fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int t;
  8. string a;
  9. cin>>t;
  10. getline(cin,a);
  11. int len=a.length();
  12. cout<<a<<" "<<len;
  13. }
Success #stdin #stdout 0s 3432KB
stdin
5 hello hi
stdout
 hello hi 9