fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a = 1;
  6. int b = 3;
  7.  
  8. a += b + a++;
  9. b = ++a;
  10. std::cout<<a<<","<<b;
  11. return 0;
  12. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
7,7