n = int(input()) ans = 0 while n > 1: ans += 1 + n%2 n = (n+1)//2 print(ans)