fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <iostream>
  4.  
  5. int main()
  6. {
  7. bool x = true;
  8. x++;
  9. std::cout << x;
  10. x++;
  11. std::cout << x;
  12. return 0;
  13. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
11