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