import math line = input().split() temple = int(line[0]) home = int(line[1]) floor = math.floor(temple/home) + 1 print(floor)