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