fork(1) download
  1. #include <iostream>
  2. #include <cstring>
  3. using namespace std;
  4.  
  5. const int MAX_LENGTH = 1000;
  6.  
  7. int main() {
  8. char a[MAX_LENGTH];
  9. cin >> a;
  10.  
  11. int length = strlen(a);
  12. cout << a << length;
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5312KB
stdin
BBBALIZILABBB
stdout
BBBALIZILABBB13