b, c = map(int, input().split()) if c%b==0: ans=int(c/b) else: ans=int((c/b)+1) print(ans)