S, F = map(int,input().split(' '))

a =S // F

if S % F:
    print(a + 1)
else:
    print(a)