x = input().split() y = int(x[0]) z = int(x[1]) ans = int(y / z) + 1 print(ans)