#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; for(int i=0;;i++) { a/=2; if(a==1) { cout<<i; } } return 0; }