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