x, y = map(int, input().split()) m = y//x if y%x>0: m+=1 print(m)