import math S, F = map(int, input().split()) ans = math.ceil(S / F) print(ans)