#include int main(void){ int n,bai=1,count=0; scanf("%d",&n); while(bai < n){ bai=bai*2; count++; } printf("%d",count); return 0; }