fork download
  1. #include <iostream>
  2.  
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8.  
  9. cout << "Hello, there, world!";
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 16048KB
stdin
Standard input is empty
stdout
Hello, there, world!