#include int main() { int a, b, c, d; d = 0; c = 1; scanf("%d", &a); for (b = 0; c < a; b++) { c = c * 2; d++; } printf("%d\n", d); return 0; }