first=input() a=int(first.split()[0]) b=int(first.split()[1]) s=0 c=int(b/a) if b%a==0: print(str(c)+"\n") else : print(str(c+1)+"\n")