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