s = input().split(" ") f = 1 ECF = int(s[0]) while True: if ECF < int(s[1]): break ECF = ECF - int(s[1]) f += 1 print(f)