N,K = map(int, input().split()) if N==K==1: print(1) elif N-1==K: print(N) else: print(N-1)