text = str(input()) a = int(text.split()[0]) b = int(text.split()[1]) c = 0 if b%a > 0: c = 1 print(int(b/a)+c)