#include using namespace std; int main() { int N; cin >> N; int n = 1; int c = 0; while (n < N) { n = n * 2; c++; } cout << c << endl; }