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