fork download
  1. #include <stdio.h>
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main() {
  6. std::cout <<"Hello World\n" << std::endl;
  7. printf("Hello World\n");
  8. return 0;
  9. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Hello World

Hello World