fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int ch = 26;
  7. if (ch & 0xF > 0x8){
  8. printf("More %d\n", ch & 0xF);
  9. }else{
  10. printf("Less %d\n", ch & 0xF);
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
Less 10