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