N=bin(int(input())) ans =0 if N =="0b1": print(1) elif "1" in str(N)[3:]: ans +=1 ans += len(str(N))-3 print(ans)