l = input().split() a,b = int(l[0]), int(l[1]) s = b // a if b % a != 0: s = s + 1 print(s)