first = input() split_first = first.split() a=int(split_first[0]) # 1歩分の長さ(cm) b=int(split_first[1]) # 進んだ距離(cm) c=-(-b//a) print(c)