n,k = map(int,input().split()) if k == n-1 or n == 1: print(n) else: print(n-1)