import math S , F = list(map(int,input().split())) if(S%F == 0): print(int(S/F) + 1) else: print(math.ceil(S/F))