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