#include using namespace std; int main() { int N; cin >> N; int get = 1, cnt = 0; while(get < N) get <<= 1, ++cnt; cout << cnt << endl; }