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