fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. cout<< "Hello World" <<endl;
  7. cout<< "Dzis jest piAtek"<<endl;
  8. cout<< 2+2<<endl;
  9. cout<< 4+4<<endl;
  10. cout<< 3-2<<endl;
  11. cout<< 5-3<<endl;
  12. cout<< 2*4<<endl;
  13. cout<< 5*3<<endl;
  14. cout<< 4/2<<endl;
  15. cout<< 6/3<<endl;
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Hello World
Dzis jest piAtek
4
8
1
2
8
15
2
2