import math a = input() n = int(a) cnt = 0 bis = 1 while bis < n: cnt = cnt+ 1 bis *= 2 print(cnt)