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