fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int c = 167772159;
  6. cout << c <<endl;
  7.  
  8. c = c & -16777216;
  9. cout << c << endl;
  10.  
  11. c = c >> 24;
  12. cout << c << endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 4344KB
stdin
Standard input is empty
stdout
167772159
150994944
9