fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. if(3 > 2 > 1)
  6. std::cout << "expected";
  7. else
  8. std::cout << "not expected";
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 5428KB
stdin
Standard input is empty
stdout
not expected