fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. int a = 1, b = 2;
  5. int c = a << b;
  6. int d = 1 << c;
  7. int e = d >> d;
  8. cout << e;
  9. return 0;
  10. }
  11.  
  12.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty