import math n = 0 l = [int (x) for x in input().split(" ")] n = math.floor(l[1]/l[0]) a = l[1]%l[0] if a == 0: print(n) elif a != 0: print(n+1)