l = list(map(int, input().split())) ans = l[1] / l[0] if l[1] % l[0] != 0: ans += 1 print(int(ans))