#include using namespace std; int main() { int N; cin >> N; int ans = 0; while (N) { N /= 2; ans++; } cout << ans << endl; }