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