https://www.acmicpc.net/problem/13549
from collections import deque
import sys
N, K=map(int, sys.stdin.readline().split())
mlist=[-1]*100001
def find(n): # bfs
queue = deque()
queue.append(n)
mlist[n]=0
while True:
x=queue.popleft()
if x == K:
return
for i in range(3):
if i==0:
nx=2*x
elif i==1:
nx=x+1
elif i==2:
nx=x-1
if 0<=nx<100001 and mlist[nx]==-1:
if i==1 or i==2:
mlist[nx]=mlist[x]+1
queue.append(nx)
else:
mlist[nx]=mlist[x]
queue.appendleft(nx) # deque 맨앞에 삽입
find(N)
print(mlist[K])