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