import math input_1 = input() split_input_1 = input_1.split() a = int(split_input_1[0]) b = int(split_input_1[1]) print (math.floor(a/b) + 1)