int shift_left2_rightn(int x, int n)
{
  x <<= 2;
  x >>= n;
  return x;
}
