d=input().split()
a=int(d[0])
b=int(d[1])
if a%b==0:
    print(int(b/a))
else:
    print((b//a)+1)