#pragma region template #include using namespace std; // clang-format off using ll = long long; using vl = vector; using vvl = vector; using ld = long double; using vld = vector; using vvld = vector; using pll = pair; using vpll = vector; using vvpll = vector; template using V = vector; template using VV = vector>; template using VVV = vector>; using vb = vector; using vs = vector; using mll = map; using msl = map; template using heap = priority_queue; template using min_heap = priority_queue, greater>; constexpr ll inf = 3001001000100100100LL; constexpr int inf_int = 1000000009; #define endl '\n' #define _overload(_1, _2, _3, name, ...) name #define rep(...) _overload(__VA_ARGS__, _rep, _rep2,)(__VA_ARGS__) #define repc(...) _overload(__VA_ARGS__, _repc, _repc2,)(__VA_ARGS__) #define repr(...) _overload(__VA_ARGS__, _repr, _repr2,)(__VA_ARGS__) #define reprc(...) _overload(__VA_ARGS__, _reprc, _reprc2,)(__VA_ARGS__) #define _rep(i,k,n) for(ll i=(k) , i##_xxxx=(n); i < i##_xxxx; ++i) #define _repc(i,k,n) for(ll i=(k) , i##_xxxx=(n); i <=i##_xxxx; ++i) #define _repr(i,k,n) for(ll i=(n)-1, i##_xxxx=(k); i >=i##_xxxx; --i) #define _reprc(i,k,n) for(ll i=(n) , i##_xxxx=(k); i >=i##_xxxx; --i) #define _rep2(i,n) _rep(i,0,n) #define _repc2(i,n) _repc(i,1,n) #define _repr2(i,n) _repr(i,0,n) #define _reprc2(i,n) _reprc(i,1,n) #define rall(o) rbegin(o), rend(o) #define all(o) begin(o), end(o) template ll sz(const C& c) { return static_cast(c.size()); } template bool chmax(T& m, const T& v){ if (m < v){ m = v; return true; } return false; } template bool chmin(T& m, const T& v){ if (v < m){ m = v; return true; } return false; } template T udiv(const T& a, const T& b){ return (a + b - 1) / b; } template T rdiv(const T& a, const T& b){ return (a + b / 2) / b; } template string join(const T& v, const S& sep ){ stringstream ss; bool f = false; for (const auto& e : v){ if (f) ss << sep; f = true; ss << e;} return ss.str(); } template string join(const T& v, const S& sep, const U& ...args){ stringstream ss; bool f = false; for (const auto& c : v){ if (f) ss << sep; f = true; ss << join(c, args...); } return ss.str(); } template ostream& operator<<(ostream& os, const vector& seq){ os << '[' << join(seq, ",") << ']'; return os; } template ostream& operator<<(ostream& os, const vector>& seq){ os << '[' << join(seq, ",\n ") << ']'; return os; } template ostream& operator<<(ostream& os, const deque& seq){ os << '[' << join(seq, ",") << ']'; return os; } template ostream& operator<<(ostream& os, const set& seq){ os << '{' << join(seq, ",") << '}'; return os; } template ostream& operator<<(ostream& os, const unordered_set& seq){ os << '{' << join(seq, ",") << '}'; return os; } template ostream& operator<<(ostream& os, const map& seq){ os << '{'; bool f = false; for (const auto& e : seq){ if (f) os << ','; f = true; os << e.first << ":" << e.second; } os << '}'; return os; } template ostream& operator<<(ostream& os, const pair& pa){ os << '(' << pa.first << ',' << pa.second << ')'; return os; } #if LOCAL #define debug(...) _debug(__VA_ARGS__, __LINE__) #else #define debug(...) #endif void print() { std::cout << '\n'; } template void print(const S& a){ std::cout << a << '\n'; } template void _debug(const S& a){ std::cerr << "(L:" << std::setw(3) << a << ")\n"; } template void print(const S& a, const T&... args){ std::cout << a << ' '; print(args...); } template void _debug(const S& a, const T&... args){ std::cerr << a << ' '; _debug(args...); } struct setup_main { setup_main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); std::cout << fixed << setprecision(15); } } setup_main_; struct bll { ll v; bll(ll v_=0): v(v_){} struct ref { bll &b; const ll msk; ref(bll &b_, ll pos) : b(b_), msk(1LL << pos) {} operator bool() const { return b.v&msk; } ref &operator=(bool x) { if(x) b.v|=msk; else b.v&=~msk; return *this; } }; bll& operator++() { ++v; return *this; } bll operator++(int) { bll tmp(*this); ++*this; return tmp; } ref operator[](ll pos) { return ref(*this,pos); } bool operator[](ll pos) const { return (v>>pos)&1; } bll& on (ll l, ll r) { v|= rangemask(l, r); return *this; } bll& off (ll l, ll r) { v&=~rangemask(l, r); return *this; } bll& flip (ll l, ll r) { v^= rangemask(l, r); return *this; } bll& next_combination() { ll a = v&-v, b = a+v; v = ((v & ~b) / (a<<1)) | b; return *this; } static ll rangemask(ll l, ll r) { return (1LL<>=1,i++) if(t&1) vec.push_back(i); return vec; } }; // clang-format on #pragma endregion void solve(ll N, int Q, vector& S, vector& T) { rep(i, Q) { ll cnt = 0; bll b = S[i]; ll lsb = b.lsb(); while (b.v + lsb <= T[i] and S[i] != 0) { b.v += lsb; lsb = b.lsb(); cnt++; } print(cnt + bll(T[i] - b.v).count()); } } int main() { int N; int Q; cin >> N >> Q; vector S(Q), T(Q); rep(i, Q) { cin >> S[i] >> T[i]; } solve(N, Q, S, T); }