#include <bits/stdc++.h> using namespace std; int main( ) { int a,t=1; cin>>a; while(a>1){ t+=1; a=int(a/2); } cout<<t; return 0; }