# coding: utf-8 import math a,b = (int(x) for x in input().rstrip().split()) ans = math.ceil(b / a) print(ans)