fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string preface;
  9. string ellenComplement;
  10.  
  11. preface = "I program";
  12. ellenComplement = "Ellen seems like a fun person to be around.";
  13.  
  14. cout<< preface << ", but " << ellenComplement <<endl;
  15. return 0;
  16. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
I program, but Ellen seems like a fun person to be around.