import math import sys input = sys.stdin.readline a, b = list(map(int, input().split(' '))) print(math.ceil(b / a))