#include int main(void){ int N; std::cin >> N; N--; int i=0; while(N/=2!=0){ i++; } std::cout << i++ << std::endl; return 0; }