#include <iostream> using namespace std; unsigned n,nr; int main() { cin>>n; while(n!=0) { n=n/2; nr++; } cout<<nr; return 0; }