#include void solve() { int n; std::cin >> n; n = n * 2 - 1; auto m = n; int ans = 0; while (m != 0) { if (~m & 1) m += n; ++ans; m >>= 1; } std::cout << ans << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int q; std::cin >> q; while (q--) solve(); return 0; }