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