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