fork download
  1. #include <iostream>
  2. int main(){
  3. std::cout << ( true == 2 ) << std::endl;
  4. std::cout << ( 2 == !!(2) ) << std::endl;
  5. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
0
0