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