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