#coding: utf-8 import math s, f = map(int, input().split()) d = math.ceil(s / f) if s % f == 0: print(d + 1) else: print(d)