# input s = input().split() n = int(s[0]) #箱の個数 k = int(s[1]) #ネズミ捕りの位置 if k == 0 or k > n: print(0) elif k == n-k+1 : print(n-1) else: print(n-2)