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