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