fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. int main()
  6. {
  7. cout << "Good morning" << ' ' << "jonh" << endl;
  8. cout << "how are you ?" << endl;
  9. cout << "i'm doing fine";
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Good morning jonh
how are you ?
i'm doing fine