a = list(map(int, input().split())) b = divmod(a[1], a[0]) if b[1] == 0: print(b[0]) else: print(b[0]+1)