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