SF = input().split() SF = [int(i) for i in SF] S = SF[0]; F = SF[1] d,m = divmod(S,F) d += 1 print(d)