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