fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. cout<< 34+2 << endl;
  6. cout<< 2+34 << endl;
  7. cout<< 17-5 <<endl;
  8. cout<< 5-17 <<endl;
  9. cout<< 3*6 <<endl;
  10. cout<< 6*3 <<endl;
  11. cout<< 34/2 <<endl;
  12. cout<< 7/3 <<endl;
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
36
36
12
-12
18
18
17
2