first = input().split() A = int(first[0]) B = int(first[1]) r = int(A/B) if B%A == 0 : print(r+1) else: print(r+1)