# -*- coding: utf8 -*- import math a_b=raw_input() a=float(a_b.split(" ")[0]) b=float(a_b.split(" ")[1]) print(int(math.ceil(b/a)))