fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. //example a
  6. cout << "hello " "world"
  7. "s" << endl;
  8. //example b
  9. cout << "hello " "world" \
  10. "s" << endl;
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
hello worlds
hello worlds