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