#include using namespace std; int main() { unsigned int N; unsigned int i = 0, j = 1; cin >> N; while (j < N) { j *= 2; i++; } cout << i; }