fork download
  1. #include<iostream>
  2.  
  3. int main()
  4. {
  5. bool A = true;
  6. bool b= false;
  7.  
  8. if (A < b)
  9. {
  10. std::cout << "A < b";
  11. }
  12. if (A> b)
  13. {
  14. std::cout << "A>b";
  15. }
  16. }
Success #stdin #stdout 0s 2928KB
stdin
Standard input is empty
stdout
A>b