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