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