a,b = map(int,input().split())if b >= a: a = b +1 print(a)else: print(a)
如果b>=a的話,那a就設為b並加1,就可達到題目所要的結果
若b<a,那麼就直接印出a