import math x,y = list(map(int, input().split())) floor = math.floor(x / y) + 1 print(floor)