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 - 15 << 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. return 0;
  14. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
36
36
2
-12
18
18
17
2