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