#!/usr/bin/env python import math innums = [int(i) for i in input().split()] ans = math.ceil(innums[1] / innums[0]) print(str(ans))