first = input() split_first = first.split() S = int(split_first[0]) F = int(split_first[1]) import math if(S%F == 0): print(str(math.ceil(S/F)+1)) else: print(str(math.ceil(S/F)))