a, b = map(int, input().split()) ans = b // a if a >= b: print('1') elif a < b and b % a != 0: print(int(ans) + 1) else: print(ans)