from math import ceil s, f = map(int, input().split()) print(ceil((s + 1 if s // f else s) / f))