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