s, f = map(int, input().split())

ans = s // f + 1
print(ans)