fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x = 123456;
  5. int y ;
  6. scanf("%d",&y);
  7. int z = (x >> y );
  8.  
  9. printf("%d , %d , %d ", x , z ,y);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 2252KB
stdin
32
stdout
123456 , 123456 , 32