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