N,M=map(int,input().split()) ans = 0 N2=N while M>1 and N>0: ans += M M = (M+1)>>1 N-=1 ans += N if M!=1 or N==0: ans = (1<