#fileencoding: utf-8 from math import ceil a, b = [int(i) for i in input().strip().split(" ")] print(ceil(b/a))