#include<iostream> using namespace std; short b; main() { int n; cin>>n; while(n){ n=n/2; b++; } cout<<b; }