fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. string c;
  7. int ant, ban;
  8.  
  9. int main()
  10. {
  11. ant = 2;
  12. ban = 3;
  13. c = (ant > ban) ? "True" : "False";
  14. cout << c;
  15. return 0;
  16. }
Success #stdin #stdout 0s 3228KB
stdin
Standard input is empty
stdout
False