fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. bool same = false;
  6.  
  7. cout << same << endl;
  8.  
  9. same = true;
  10.  
  11. cout << same<< endl;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5368KB
stdin
Standard input is empty
stdout
0
1