a = int(input()) b = int(input()) a_sum = 0 total_count = 0 while a_sum < b: a_sum = a_sum + a total_count = total_count + 1 print(total_count)