#include using namespace std; #define rep(i,n) for(int i = 0; i < int(n); i++) int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); int n; cin >> n; int now = 1; int cnt = 0; while(true){ if(now >= n){ cout << cnt << endl; return 0; } now *= 2; cnt++; } return 0; }