from math import ceil i=input().split() a,b=int(i[0]),int(i[1]) print(ceil(b/a))