N = list(map(int, input().split(' '))) if N[1] % N[0] == 0: print(N[1] // N[0]) else: print((N[1] // N[0]) +1)