#include #include using namespace std; int main() { int n; cin >> n; cout << (n == 1 ? 0 : (int)log2(n - 1) + 1) << endl; }