fork download
  1. #include<iostream>
  2.  
  3. using namespace std;
  4. int main(){
  5. int a = 1;
  6. int b = 2;
  7.  
  8. cout << a+b << endl;
  9. cout << "Hello World" << endl;
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
3
Hello World