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