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