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