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