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