#include int main(void) { long n, hold = 1; short ans = 0; scanf("%ld", &n); while(hold < n){ hold <<= 1; ans++; } printf("%d\n", ans); }