import math num = input().rstrip().split(" ") wide = int(num[0]) dist = int(num[1]) k = dist / wide print(math.ceil(k))