# cosing:utf-8
a=list(map(int,input().split()))
b=a[1]//a[0]
if a[1]%a[0]==0:
    print(b)
else:
    c=b+1
    print(c)