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