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