fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. cout << (true != false) << endl;
  6. cout << (true != true) << endl;
  7. cout << (false != true) << endl;
  8. cout << (false != false) << endl;
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/321404/101
Success #stdin #stdout 0s 4456KB
stdin
Standard input is empty
stdout
1
0
1
0