import math # 標準入力から一行分を読み出し、文字列として格納する。 first = input() # 読み込んだ文字列をスペースで分割する split_first = first.split() # それぞれをint型に変換する A = int(split_first[0]) B = int(split_first[1]) #歩数を計算して、余りは切り上げる B = math.ceil(B/A) print(B)