#include using namespace std; int main(){ int a; cin >> a; int b = 1; int x = 0; while (b <= a){ b *= 2; x++; } cout << x; }