#No.388 import math S, F = input().split(" ") S, F = int(S), int(F) ans = math.floor(S / F) + 1 print(ans)