#include int main() { using namespace std; int N; cin >> N; int t = 0; while(N != 0) { N >>= 1; ++t; } cout << t << endl; return 0; }