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