a,b = map(int,input().split()) count = 0 while b > 0: b -= a count += 1 print(count)