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