a, b = map(int, input().split()) cnt = b//a if b%a!=0: cnt+=1 print(cnt)