intial = input() s_initial = intial.split(" ") S = int(s_initial[0]) F = int(s_initial[1]) ans = S / F + 1 print(ans)