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