#include int main() { int S, F; std::cin >> S >> F; int answer = S / F + 1; std::cout << answer << std::endl; return 0; }