fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. cout<< "Hello World"<<endl;
  7. cout<< "Dziś jest poniedziaLek"<<endl;
  8. cout<< "Jutro jedziemy na wycieczkę"<<endl;
  9. cout<< 2+2<<endl;
  10. cout<< 3+3<<endl;
  11. cout<< 5-2<<endl;
  12. cout<< 15-9<<endl;
  13. cout<< 4*2<<endl;
  14. cout<< 8*5<<endl;
  15. cout<< 10/2<<endl;
  16. cout<< 45/5;
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Hello World
Dziś jest poniedziaLek
Jutro jedziemy na wycieczkę
4
6
3
6
8
40
5
9