fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. string s(1,'a');
  7. string t;
  8. t = string(1,'b');
  9.  
  10. cout << s << endl;
  11. cout << t << endl;
  12.  
  13. }
Success #stdin #stdout 0s 4528KB
stdin
Standard input is empty
stdout
a
b