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