a, b = (int(i) for i in input().split()) if (b%a == 0): print("%d" % (b/a)) else: print("%d" % (b/a+1))