fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string s = "123";
  9. s.append(s.substr(2)).push_back(s[s.length() - 2]);
  10. cout << s;
  11. }
  12.  
  13.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
12333