a, b = map(int,input().split()) q, mod = divmod(b, a) if mod > 0: q += 1 print(q)