fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a = -5;
  6. unsigned int b = 7;
  7.  
  8. if (a < b)
  9. cout << "-5 < 7" << endl;
  10. else
  11. cout << "oops, obosralsya" << endl;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
oops, obosralsya