#include #include using namespace atcoder; using namespace std; using ll = int64_t; using ull = u_int64_t; #define ALL(a) (a).begin(), (a).end() #define endl '\n' #define Yes cout << "Yes" << endl #define No cout << "No" << endl int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ll N; cin >> N; cout << __bit_width(N) << endl; }