src = input() src = src.split() a = int(src[0]) b = int(src[1]) q = 1 if a < b: q = b // a if b % a > 0: q += 1 print(q)