# -*- coding: utf-8 -*- import math a, b = map(int, raw_input().split()) c = float(b) / float(a) print int(math.ceil(c))