#include using namespace std; int main() { double a; unsigned k = 0; cin >> a; while (a) { a /= 2; k++; } cout << k; return 0; }