A=int(input()) B=int(input()) # Ax+B=x if A==1: print(0) else: # x=B/(1-A) print(round(B/(1-A)))