fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main(void) {
  4. cout << "Hello You.\n ""Hello You.\n""Hello You.\n";
  5. cout <<endl;
  6. cout << "It's me, your first program.";
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Hello You.
 Hello You.
Hello You.

It's me, your first program.