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