a,b = map(int,input().split()) v,m=divmod(b,a) print(v if m == 0 else v +1)