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