import math A = list(map(int, input().split())) if (A[1]%A[0]) == 0: print (int(A[1]/A[0])) else: print(int(math.floor(A[1]/A[0]) + 1 ))