A = [int(i) for i in input().split()] if A[1] % A[0] == 0: print(int(A[1]/A[0])) else: print(int(A[1]/A[0] + 1))