a, b = map(int, input().split(' ')) d = 0 step_cnt = 0 while d < b: step_cnt += 1 d = a*step_cnt print(step_cnt)