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