#include int main(){ int n; std::cin >> n; int i = 1, cnt = 0; while (i < n){ i *= 2; ++cnt; } std::cout << cnt << std::endl; return 0; }