fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int x = -128;
  7.  
  8. cout << x << endl;
  9. cout << (x & 0xFFFFFFFF) << endl;
  10.  
  11.  
  12.  
  13. // your code goes here
  14. return 0;
  15. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
-128
4294967168