fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. string foo{"bu blah blah blee le"};
  8.  
  9. cout << string(foo, 2) << endl << string(foo, 0, foo.size() - 2) << endl;
  10. return 0;
  11. }
Time limit exceeded #stdin #stdout 5s 1084KB
stdin
Standard input is empty
stdout
Standard output is empty