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