fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. auto i = 1u;
  6.  
  7. if( 1u > -1 )
  8. {
  9. cout << "true";
  10. }
  11. else
  12. {
  13. cout << "42";
  14. }
  15. return 0;
  16. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
42