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