import math a, b = map(int, input().split()) c = math.floor(a/b) + 1 print(c)