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