fork download
  1. /************************\
  2. |* In the name of God *|
  3. |* Code 2. 2. Irysc.com *|
  4. |* IROI.rozblog.com *|
  5. \************************/
  6.  
  7. #include <iostream>
  8.  
  9. using namespace std;
  10.  
  11. int main() {
  12. cout << "Hello World!";
  13. cout << "\n";
  14. cout << 1 + 5 + 2 + 1;
  15. cout << endl;
  16. cout << "1 + 5 + 2 + 1 = " << 1 + 5 + 2 + 1 << endl;
  17. cout << "Hello ";
  18. cout << "World!";
  19. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
Hello World!
9
1 + 5 + 2 + 1 = 9
Hello World!