target = int(input()) biscuit = 1 count= 0 while target > biscuit: biscuit = biscuit*2 count = count + 1 print(count)