from collections import deque class Yukicoder: def __init__(self): self.n = int(input()) def run(self): dp = [0]*10001 dp[1] = 1 queue = deque() queue.append(1) while len(queue) != 0: q = queue.popleft() if q == self.n: return dp[q] cnt = bin(q).count('1') for i in [-1, 1]: next_pos = q + cnt*i if 0 < next_pos and next_pos <= self.n and dp[next_pos] == 0: dp[next_pos] = dp[q] + 1 queue.append(next_pos) return -1 y = Yukicoder() print(y.run())