fork download
  1. #include <iostream> // C++ I/O support
  2. using namespace std; // I/O is from the std namespace
  3.  
  4. int main () // C++ program entry point
  5. {
  6.  
  7. cout << "Hello World" << endl; // output to the console
  8.  
  9. return 0; // main function return
  10.  
  11. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Hello World