a=int(input()) b=int(input()) if b%a!=0: c=b/a d=int(c)+1 print(d) else: c=b/a print(c)