a, b = map(int, input().split()) cnt = 0 while b > 0: b -= a cnt += 1 print(cnt)