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