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