fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. bool test = 5;
  5.  
  6. using namespace std;
  7. cout << (test == true) << "\n";
  8. cout << (test == false) << "\n";
  9. }
  10.  
Success #stdin #stdout 0.02s 2724KB
stdin
Standard input is empty
stdout
1
0