# coding:UTF-8 import math provided = input().split() a = int(provided[0]) b = int(provided[1]) answer = math.ceil(float(b) / a) print(answer)