a,b = map(int,input().split()) c = b / a d = b % a if d > 0: e = c + 1 print(int(e)) else: print(int(c))