k = list(map(int,input().split())) if k[1]%k[0] ==0: print(k[1]//k[0]) else: print(k[1]//k[0]+1)