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