fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(){
  6.  
  7. int x = 1;
  8. x= x<< 7;
  9.  
  10. x= x >>6;
  11.  
  12. cout<<x;
  13.  
  14. }
  15.  
  16.  
Success #stdin #stdout 0.01s 5544KB
stdin
Standard input is empty
stdout
2