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