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