S, F = map(int,input().split(' ')) a =S // F if S % F: print(a + 1) elif S % F == 0: print(a + 1) else: print(a)