fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. int a = 5;
  6. int b = -13;
  7.  
  8. std::cout << b << " " << a << "\n";
  9.  
  10. b = a + (a = b) * 0;
  11.  
  12. std::cout << b << " " << a << "\n";
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
-13 5
-13 -13